YouTube Skip Ads
YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'
What is YouTube Skip Ads?
YouTube Skip Ads is a Chrome extension developed by admin, and its main feature is "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'".
Extension Screenshots
Download YouTube Skip Ads Extension CRX File
Download YouTube Skip Ads 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
YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. This addon auto clicks the 'skip ad button'
Extension Basic Information
Name | |
ID | jnhhfkebfgdllkmohmfhdmhkfooolbmb |
Official URL | https://chrome.google.com/webstore/detail/youtube-skip-ads/jnhhfkebfgdllkmohmfhdmhkfooolbmb |
Description | YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button' |
File Size | 12.73 KB |
Installation Count | 3,053 |
Current Version | 1.0.6 |
Last Updated | 2022-10-31 |
Publish Date | 2022-10-31 |
Rating | 5.00/5 Total 2 Ratings |
Developer | admin |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Skip Ads", "short_name": "YouTube Skip Ads", "description": "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'", "manifest_version": 3, "version": "1.0.6", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_yt.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "128": "logob.png" } } |