Inspect and view changes in YouTube Still Here 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
{
"manifest_version": 2,
"name": "YouTube Still Here",
"description": "Prevents YouTube and YouTube Music from pausing your playlists by showing 'Video paused. Continue watching?' dialog",
"version": "3.0",
"browser_action": {
"default_icon": "./icons/play.png"
},
"icons": {
"16": "./icons/play16x16.png",
"48": "./icons/play48x48.png",
"128": "./icons/play128x128.png"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"stillHere.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}