Inspect and view changes in YT-Nonstop source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "YT-Nonstop",
"version": "2.4.3",
"description": "Deletes the annoying \"Video paused. Continue watching?\" popup on YouTube and keeps it running nonstop without autoplay message!",
"permissions": [
"declarativeContent",
"storage",
"tabs"
],
"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": [
"script.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"autoconfirm&skip.js"
],
"matches": [
"https://www.youtube.com/*",
"https://music.youtube.com/*"
]
}
],
"action": {
"default_icon": "images/ytn128.png",
"default_popup": "popup.html",
"show_matches": [
"https://www.youtube.com/*",
"https://music.youtube.com/*"
]
},
"icons": {
"48": "images/ytn48.png",
"128": "images/ytn128.png"
},
"manifest_version": 3,
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}