YouTube Ad Blocker
Automatically blocks advertisement of YouTube Videos
What is YouTube Ad Blocker?
YouTube Ad Blocker is a Chrome extension developed by hiatamaworkshop, and its main feature is "Automatically blocks advertisement of YouTube Videos".
Extension Screenshots
Download YouTube Ad Blocker Extension CRX File
Download YouTube Ad Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | YouTube Ad Blocker |
ID | lnnfiihdkikdognbnlbnfajpeccdohka |
Official URL | https://chromewebstore.google.com/detail/youtube-ad-blocker/lnnfiihdkikdognbnlbnfajpeccdohka |
Description | Automatically blocks advertisement of YouTube Videos |
File Size | 62.03 KB |
Installation Count | 37 |
Current Version | 0.1.1 |
Last Updated | 2021-02-18 |
Publish Date | 2021-02-17 |
Developer | hiatamaworkshop |
[email protected] | |
Payment Type | free |
Extension Website | http://hiatamaworkshop.com/main.html |
Supported Languages | 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" ] } |