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 Auto Pause Blocker",
"description": "Disables the \"Video Paused. Continue Watching?\" popup on YouTube.",
"version": "25.9.9",
"manifest_version": 3,
"default_locale": "en",
"permissions": [
"webRequest",
"declarativeNetRequest"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/music.youtube.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/music.youtube.com\/*"
],
"js": [
"injected.js"
],
"world": "MAIN",
"all_frames": true
}
],
"icons": {
"128": "128.png"
}
}