YouTube Ad Blocker
Automatically blocks advertisement of YouTube Videos
Was ist YouTube Ad Blocker?
YouTube Ad Blocker ist eine Chrome-Erweiterung, die von hiatamaworkshop entwickelt wurde, und ihr Hauptmerkmal ist "Automatically blocks advertisement of YouTube Videos".
Erweiterungsscreenshots
YouTube Ad Blocker-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Ad Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | YouTube Ad Blocker |
ID | lnnfiihdkikdognbnlbnfajpeccdohka |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-ad-blocker/lnnfiihdkikdognbnlbnfajpeccdohka |
Beschreibung | Automatically blocks advertisement of YouTube Videos |
Dateigröße | 62.03 KB |
Installationsanzahl | 37 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2021-02-18 |
Veröffentlichungsdatum | 2021-02-17 |
Entwickler | hiatamaworkshop |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://hiatamaworkshop.com/main.html |
Unterstützte Sprachen | 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" ] } |