Inspect and view changes in Auto 8K/4K/HD on Youtube 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
{
"author": "Auto Youtube",
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": {
"128": "images/icon.png"
},
"default_popup": "html/popup.html"
},
"content_scripts": [
{
"all_frames": true,
"css": [],
"js": [
"js/library_youtube.js"
],
"matches": [
"*://www.youtube.com/*"
],
"run_at": "document_start"
}
],
"default_locale": "en",
"description": "__MSG_appDesc__",
"icons": {
"128": "images/icon.png"
},
"manifest_version": 2,
"name": "__MSG_appName__",
"permissions": [
"alarms",
"contextMenus",
"privacy",
"storage",
"tabs",
"cookies",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*",
"notifications"
],
"version": "5.0.0",
"-ms-preload": {
"backgroundScript": "backgroundScriptsAPIBridge.js",
"contentScript": "contentScriptsAPIBridge.js"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}