Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Ad Auto-skipper", "short_name": "ad skipper", "description": "YouTube Ad Skipper is an extension that auto skips ads after YouTube provides a skip ad button. It does not block an ad.", "manifest_version": 3, "version": "2.2.0", "author": "Shreya Dahal", "homepage_url": "https:\/\/github.com\/squgeim\/yt-ad-autoskipper", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ ".\/youtube.js" ], "all_frames": true, "run_at": "document_end" }, { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ ".\/youtube_override.js" ], "all_frames": true, "run_at": "document_start", "world": "MAIN" }, { "matches": [ "http:\/\/localhost:5002\/*", "https:\/\/ad-auto-skipper.web.app\/*" ], "js": [ ".\/adskipper.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Configure Ad Auto Skipper" }, "options_page": "pages\/settings.html", "permissions": [ "storage" ], "icons": { "128": "logo.png" }, "externally_connectable": { "matches": [ "http:\/\/localhost:5002\/*", "https:\/\/ad-auto-skipper.web.app\/*" ] } }