Sponsor Blocker
Skip sponsored ads in youtube videos.
What is Sponsor Blocker?
Sponsor Blocker is a Chrome extension developed by Cloud9 Web Services, and its main feature is "Skip sponsored ads in youtube videos.".
Extension Screenshots
Download Sponsor Blocker Extension CRX File
Download Sponsor 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
Extension attempts to block sponsorships on youtube videos. Currently extension is in beta. Only few podcast-type youtube channels are supported.
Extension Basic Information
Name | Sponsor Blocker |
ID | pjoibejadaddgagcjlibeacpnngdhlhi |
Official URL | https://chromewebstore.google.com/detail/sponsor-blocker/pjoibejadaddgagcjlibeacpnngdhlhi |
Description | Skip sponsored ads in youtube videos. |
File Size | 1.98 MB |
Installation Count | 695 |
Current Version | 1.3 |
Last Updated | 2021-08-13 |
Publish Date | 2021-03-01 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Cloud9 Web Services |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sponsor Blocker", "version": "1.3", "description": "Skip sponsored ads in youtube videos.", "permissions": [ "tabs", "storage", "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "browser_action": { "default_icon": { "16": "images\/v2_16.png", "32": "images\/v2_32.png", "48": "images\/v2_48.png", "128": "images\/v2_128.png" }, "default_title": "Sponsor Blocker", "default_popup": "pages\/popup.html" }, "icons": { "16": "images\/v2_16.png", "32": "images\/v2_32.png", "48": "images\/v2_48.png", "128": "images\/v2_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "js": [ "run.js" ], "run_at": "document_end" } ] } |