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": "1.5.3",
"description": "Deletes the annoying \"Video paused. Continue watching?\" confirmation on YouTube and keeps YouTube running nonstop without autoplay message!",
"permissions": [
"storage",
"https://www.youtube.com/*",
"https://music.youtube.com/*"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*",
"https://music.youtube.com/*"
],
"js": [
"script.js"
],
"run_at": "document_end"
}
],
"page_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": 2,
"browser_specific_settings": {
"gecko": {
"id": "{316cb7eb-36d4-4cc7-a77c-61b6998e7505}"
}
}
}