Build an AD BLOCKER Chrome Extension in Less Than 10 Minutes

  Рет қаралды 17,336

Kryptech

Kryptech

Күн бұрын

Пікірлер: 68
@luissamouco2518
@luissamouco2518 Жыл бұрын
great tutorial
@russellmz
@russellmz 3 ай бұрын
it worked! got rid of the annoying videos and redirect websites on the comics site i read. thanks man!
@saumyaranjan9256
@saumyaranjan9256 Жыл бұрын
Nice video man! Short and to the point.
@KryptechOfficial
@KryptechOfficial Жыл бұрын
Glad you liked it!
@NetraPatwari
@NetraPatwari Жыл бұрын
Please make full course chrome extension development.
@KryptechOfficial
@KryptechOfficial Жыл бұрын
It's on the plan!
@kaushiksen2190
@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
@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
@MrSypas Жыл бұрын
Please make full course chrome extension development
@KryptechOfficial
@KryptechOfficial Жыл бұрын
I'm currently in the planning stages of a full course!
@namandubey8348
@namandubey8348 10 ай бұрын
My first extension
@EtH-bo3ji
@EtH-bo3ji Жыл бұрын
Shit was fire no cap
@user-yi4mt4hp8u
@user-yi4mt4hp8u 8 ай бұрын
This was amazing and fast. Can you make one that blocks KZbin ads?
@prodqt3906
@prodqt3906 7 ай бұрын
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__
@__dante__ 5 ай бұрын
​@@prodqt3906 Can i have the link?
@5subswithnovids
@5subswithnovids 5 ай бұрын
@@prodqt3906 oooh, whats you youtube one
@muzammilansari4073
@muzammilansari4073 4 ай бұрын
​@@prodqt3906can you provide the code
@light_rd2819
@light_rd2819 14 күн бұрын
does this block ads on youtube as well? I'll be watching anime as well and I don't want to see ads.
@賴皮鬼-k3l
@賴皮鬼-k3l 8 ай бұрын
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
@pronoob249 Жыл бұрын
keep uploading these videos bro
@zenekgowna5984
@zenekgowna5984 Жыл бұрын
Very good stuff bro :D
@KryptechOfficial
@KryptechOfficial Жыл бұрын
Thanks so much!!
@akashreddyjammula
@akashreddyjammula Жыл бұрын
How do we upload to the chrome extensions, means how other users can access?
@KryptechOfficial
@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!
@ybenlarbi
@ybenlarbi 7 ай бұрын
i face this issue : Unrecognized manifest key 'declarativeNetRequest'. any idea ?
@firewatermoonsun
@firewatermoonsun 5 ай бұрын
How did you find which ad url needs to be blocked? For example how to find doubleclick site?
@KryptechOfficial
@KryptechOfficial 5 ай бұрын
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
@saiteja552 Жыл бұрын
short and clear, can you just upload the code or github link for this.?
@KryptechOfficial
@KryptechOfficial Жыл бұрын
No problem! I just uploaded the code to GitHub, check the description for the link! It appears under the "RESOURCES" heading
@viratkohli4863
@viratkohli4863 10 ай бұрын
great to the point video...loved it
@KryptechOfficial
@KryptechOfficial 10 ай бұрын
I'm glad I could help!!
@niteshsaini3003
@niteshsaini3003 11 ай бұрын
How can we made a ad-blocker that will trigger by a button
@pierrenagonio
@pierrenagonio Жыл бұрын
i have made my 1st chrome extension today: select and search games
@KryptechOfficial
@KryptechOfficial Жыл бұрын
Congrats!! 🥳🥳 Keep up the great work
@harshitpatil7117
@harshitpatil7117 8 ай бұрын
how to add working on and off button to the popup
@liv6646
@liv6646 5 ай бұрын
could i use a list of urls in the rules?
@Rajdweep
@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
@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
@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
@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
@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
@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
@debeeriz Жыл бұрын
who pays for an adblocker? the best are open sourced, and they block you tube ads
@monarca2846
@monarca2846 8 ай бұрын
is it possible to mute e jump ads you tub3 auto?
@lawrencecarvalho561
@lawrencecarvalho561 6 ай бұрын
Is there adblocker on FB messenger?
@Akash.Chopra
@Akash.Chopra Жыл бұрын
Solid!
@SilverHealer-1
@SilverHealer-1 Ай бұрын
Id love for you to make 1 for youtube.
@kingx_
@kingx_ Жыл бұрын
can you make a video on how to code an adblocker for twitch and youtube
@KryptechOfficial
@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_
@kingx_ Жыл бұрын
@@KryptechOfficialsure i try it
@thepragmatic6383
@thepragmatic6383 Жыл бұрын
@@KryptechOfficial The online video giant (YT) has now declared war on AdBlock-style apps.
@KryptechOfficial
@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
@adishjain2507 Жыл бұрын
Thank you for this video
@KryptechOfficial
@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!
@stevewheatley243
@stevewheatley243 11 ай бұрын
Can this be done on Android?
@KryptechOfficial
@KryptechOfficial 10 ай бұрын
Chrome for Android doesn't currently support extensions, so you'll have to use the Kiwi Browser, which is Chromium-based. 🙂
@stevewheatley243
@stevewheatley243 10 ай бұрын
​@@KryptechOfficialThanks. I wish it worked for YT. They drive you nuts.
@ZeshanMukhtar1
@ZeshanMukhtar1 Жыл бұрын
Thanks
@mikeshin77
@mikeshin77 Жыл бұрын
amazing!!! fatastic!!!
@0xAirdropAlert
@0xAirdropAlert Жыл бұрын
GG
@user-dz6il2bx5p70
@user-dz6il2bx5p70 3 ай бұрын
so we built nothing, but just patched two config files which are handled by the browser in some hidden abstracted way
How I Built It: $20K/Month Chrome Extension
13:13
Starter Story
Рет қаралды 210 М.
Why Are Open Source Alternatives So Bad?
13:06
Eric Murphy
Рет қаралды 724 М.
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН
BAYGUYSTAN | 1 СЕРИЯ | bayGUYS
36:55
bayGUYS
Рет қаралды 1,9 МЛН
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
De-Google Your Life - Part 1: Start With Chrome
19:31
Linus Tech Tips
Рет қаралды 2,4 МЛН
I Scraped the Entire Steam Catalog, Here’s the Data
11:29
Newbie Indie Game Dev
Рет қаралды 823 М.
Best FREE Software for Game Development (2025)
8:01
anyDev
Рет қаралды 50 М.
Beware Malicious Chrome Extensions!
17:26
ThioJoe
Рет қаралды 146 М.
I Redesigned the ENTIRE YouTube UI from Scratch
19:10
Juxtopposed
Рет қаралды 1 МЛН
Tmux has forever changed the way I write code.
13:30
Dreams of Code
Рет қаралды 1 МЛН
How is this Website so fast!?
13:39
Wes Bos
Рет қаралды 1,3 МЛН
Build a Chrome Extension With React & Webpack
17:44
Codify Tools
Рет қаралды 45 М.
5 Ways To Make Money Building Chrome Extensions
6:17
Rick Blyth | Chrome Extensions | Micro SaaS
Рет қаралды 29 М.
Dear Game Developers, Stop Messing This Up!
22:19
Jonas Tyroller
Рет қаралды 784 М.
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН