YouTube Ad Blocker
Automatically blocks advertisement of YouTube Videos
Wat is YouTube Ad Blocker?
YouTube Ad Blocker is een Chrome-extensie ontwikkeld door hiatamaworkshop, en de belangrijkste functie is "Automatically blocks advertisement of YouTube Videos".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Ad Blocker
Download YouTube Ad Blocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
The extension functions as "Auto Clicker", it will click on 【Close / Skip Buttons】of the YouTube videos. It will work for some time, just a silly small function.
Basisinformatie over de Extensie
Naam | YouTube Ad Blocker |
ID | lnnfiihdkikdognbnlbnfajpeccdohka |
Officiële URL | https://chromewebstore.google.com/detail/youtube-ad-blocker/lnnfiihdkikdognbnlbnfajpeccdohka |
Beschrijving | Automatically blocks advertisement of YouTube Videos |
Bestandsgrootte | 62.03 KB |
Aantal Installaties | 37 |
Huidige Versie | 0.1.1 |
Laatst Bijgewerkt | 2021-02-18 |
Publicatiedatum | 2021-02-17 |
Ontwikkelaar | hiatamaworkshop |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://hiatamaworkshop.com/main.html |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Ad Blocker", "version": "0.1.1", "manifest_version": 2, "description": "Automatically blocks advertisement of YouTube Videos", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_popup": "youtube_adBlock.html", "default_icon": "icons\/icon16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "content.js", "inject.js" ], "permissions": [ "storage" ] } |