it worked! got rid of the annoying videos and redirect websites on the comics site i read. thanks man!
@saumyaranjan9256 Жыл бұрын
Nice video man! Short and to the point.
@KryptechOfficial Жыл бұрын
Glad you liked it!
@NetraPatwari Жыл бұрын
Please make full course chrome extension development.
@KryptechOfficial Жыл бұрын
It's on the plan!
@kaushiksen2190 Жыл бұрын
Loved your video, learned alot from it. Thank you so much. Please make slightly advanced project on chrome extension which i can add on my resume.
@KryptechOfficial Жыл бұрын
I will definitely make more content on Chrome extension soon, I'm currently working on a full course on extension development. Thanks for watching!
@MrSypas Жыл бұрын
Please make full course chrome extension development
@KryptechOfficial Жыл бұрын
I'm currently in the planning stages of a full course!
@namandubey834810 ай бұрын
My first extension
@EtH-bo3ji Жыл бұрын
Shit was fire no cap
@user-yi4mt4hp8u8 ай бұрын
This was amazing and fast. Can you make one that blocks KZbin ads?
@prodqt39067 ай бұрын
I wrote an extension that foregos youtube video ads. I can send you the link if you'd like. I'm working on integrating pop-up ad blocker as well rn
@__dante__5 ай бұрын
@@prodqt3906 Can i have the link?
@5subswithnovids5 ай бұрын
@@prodqt3906 oooh, whats you youtube one
@muzammilansari40734 ай бұрын
@@prodqt3906can you provide the code
@light_rd281914 күн бұрын
does this block ads on youtube as well? I'll be watching anime as well and I don't want to see ads.
@賴皮鬼-k3l8 ай бұрын
how do we know where the resource of the ads? like, if some websites use url other than these two, I want to block them as well
@pronoob249 Жыл бұрын
keep uploading these videos bro
@zenekgowna5984 Жыл бұрын
Very good stuff bro :D
@KryptechOfficial Жыл бұрын
Thanks so much!!
@akashreddyjammula Жыл бұрын
How do we upload to the chrome extensions, means how other users can access?
@KryptechOfficial Жыл бұрын
To upload an extension, head over to the Chrome Developer Dashboard. In the upper right is a button labelled "Add new item." Upload a ZIP archive of your extension, fill out all of the technical and privacy information for your extension, then submit it for review. Thanks so much for watching!
@ybenlarbi7 ай бұрын
i face this issue : Unrecognized manifest key 'declarativeNetRequest'. any idea ?
@firewatermoonsun5 ай бұрын
How did you find which ad url needs to be blocked? For example how to find doubleclick site?
@KryptechOfficial5 ай бұрын
Whenever you see an ad on your browser (e.g., a banner or sidebar ad) you can hover your mouse over the ad to show the URL in the bottom left corner of the screen, as long as you have status bar enabled in your browser settings.
@saiteja552 Жыл бұрын
short and clear, can you just upload the code or github link for this.?
@KryptechOfficial Жыл бұрын
No problem! I just uploaded the code to GitHub, check the description for the link! It appears under the "RESOURCES" heading
@viratkohli486310 ай бұрын
great to the point video...loved it
@KryptechOfficial10 ай бұрын
I'm glad I could help!!
@niteshsaini300311 ай бұрын
How can we made a ad-blocker that will trigger by a button
@pierrenagonio Жыл бұрын
i have made my 1st chrome extension today: select and search games
@KryptechOfficial Жыл бұрын
Congrats!! 🥳🥳 Keep up the great work
@harshitpatil71178 ай бұрын
how to add working on and off button to the popup
@liv66465 ай бұрын
could i use a list of urls in the rules?
@Rajdweep Жыл бұрын
awesome video bro, just one thing can we dynamically add extensions in the extension popup html so that those will also be blocked? is there a way to dynamically add it?
@KryptechOfficial Жыл бұрын
Let me check if I'm understanding. Do you mean allowing the user of the extension to add additional URL match patterns to block? If that's the case, we would have to use a plain JS object for our rules instead of a JSON file, which would be difficult because the rulesets are connected inside of our Manifest. So maybe there is something in the Chrome API that can allow us to update our rulesets on the fly. Thanks so much for watching!!
@Rajdweep Жыл бұрын
@@KryptechOfficial ya bro i want to put a add url in the popup html where the user can put desired url that will be blocked after getting added, is there a way to implement it? i was reading manifest v3 documentation bt didn't find anything similar
@Rajdweep Жыл бұрын
bro theres a extension in chrome webstore named A-blocker adblocker , it has a feature of adding or removing url from adblocker, how to implement it? the code isnt open source so i didnt find any resource for it@@KryptechOfficial
@KryptechOfficial Жыл бұрын
@Rajdweep To do this you can use the chrome.webRequest API. When the user adds a new URL to block, put it into local or synced storage using chrome.storage. Then in your background script, fetch all the blocked URLs from storage. There is a listener called chrome.webRequest.onBeforeRequest, in the callback you can check if the attempted request is going to a blocked URL, then cancel the request. I hope this helps, and good luck!! 😁
@Rajdweep Жыл бұрын
thanks bro im searching about chrome.webRequest API.but in manifest v3 we need a rules.json right to block particular urls, how will i modify it dynamically?@@KryptechOfficial
@debeeriz Жыл бұрын
who pays for an adblocker? the best are open sourced, and they block you tube ads
@monarca28468 ай бұрын
is it possible to mute e jump ads you tub3 auto?
@lawrencecarvalho5616 ай бұрын
Is there adblocker on FB messenger?
@Akash.Chopra Жыл бұрын
Solid!
@SilverHealer-1Ай бұрын
Id love for you to make 1 for youtube.
@kingx_ Жыл бұрын
can you make a video on how to code an adblocker for twitch and youtube
@KryptechOfficial Жыл бұрын
Unfortunately that is quite complex because of how KZbin handles their ad feeds. If you want to block ads on KZbin and Twitch, I'd recommend the free AdBlock extension. I use it and I am never bothered by ads.
@kingx_ Жыл бұрын
@@KryptechOfficialsure i try it
@thepragmatic6383 Жыл бұрын
@@KryptechOfficial The online video giant (YT) has now declared war on AdBlock-style apps.
@KryptechOfficial Жыл бұрын
@@thepragmatic6383 I'm aware of that hahah, I believe that's the reason this video is now getting more views than usual XD
@adishjain2507 Жыл бұрын
Thank you for this video
@KryptechOfficial Жыл бұрын
No problem bro! Also, I'm live streaming in a couple of days doing more Chrome Extension stuff, keep an eye out for it!
@stevewheatley24311 ай бұрын
Can this be done on Android?
@KryptechOfficial10 ай бұрын
Chrome for Android doesn't currently support extensions, so you'll have to use the Kiwi Browser, which is Chromium-based. 🙂
@stevewheatley24310 ай бұрын
@@KryptechOfficialThanks. I wish it worked for YT. They drive you nuts.
@ZeshanMukhtar1 Жыл бұрын
Thanks
@mikeshin77 Жыл бұрын
amazing!!! fatastic!!!
@0xAirdropAlert Жыл бұрын
GG
@user-dz6il2bx5p703 ай бұрын
so we built nothing, but just patched two config files which are handled by the browser in some hidden abstracted way