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": "Auto-skips and mutes YouTube ads with customizable timing for different channels. No ad blocking.",
"manifest_version": 3,
"version": "1.0.0",
"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"
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Configure Ad Auto Skipper"
},
"options_page": "pages\/settings.html",
"permissions": [
"storage"
],
"icons": {
"128": "logo.png"
}
}