YouTube Background Ad Skip Extension
Automatically Skip ads on YouTube. This is not an ad blocker
What is YouTube Background Ad Skip Extension?
YouTube Background Ad Skip Extension is a Chrome extension developed by Krysp_Coder, and its main feature is "Automatically Skip ads on YouTube. This is not an ad blocker".
Extension Screenshots
Download YouTube Background Ad Skip Extension Extension CRX File
Download YouTube Background Ad Skip Extension 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
Automatically skip YouTube ads when the ad is able to be skipped. When an ad has the option to be skipped within 5 seconds the extension will skip the ad for you immediately. This does not block ads or skip ads that do not originally have the option to be skipped.
Extension Basic Information
Name | YouTube Background Ad Skip Extension |
ID | ncbifbdnlggnffchafbdiefobpabajkb |
Official URL | https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb |
Description | Automatically Skip ads on YouTube. This is not an ad blocker |
File Size | 17.34 KB |
Installation Count | 867 |
Current Version | 0.1.1 |
Last Updated | 2018-06-20 |
Publish Date | 2018-06-20 |
Rating | 3.33/5 Total 3 Ratings |
Developer | Krysp_Coder |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Background Ad Skip Extension", "short_name": "YBASE", "version": "0.1.1", "description": "Automatically Skip ads on YouTube. This is not an ad blocker", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false, "matches": [ "https:\/\/www.youtube.com?*" ] }, "browser_action": { "default_icon": "images\/media-skip-forward-xxl.png" }, "icons": { "16": "images\/media-skip-forward16.png", "32": "images\/media-skip-forward32.png", "48": "images\/media-skip-forward48.png", "128": "images\/media-skip-forward128.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/www.youtube.com\/watch*" ] } ] } |