Inspect and view changes in YouTube Remote 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": "YouTube Remote",
"short_name": "YT Remote",
"version": "1.0.1",
"description": "Control Youtube clients on your network",
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*",
"https://music.youtube.com/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"yt_remote.js"
],
"matches": [
"https://www.youtube.com/*",
"https://music.youtube.com/*"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/ytr16.png",
"32": "icons/ytr32.png",
"48": "icons/ytr48.png",
"128": "icons/ytr128.png"
}
},
"icons": {
"16": "icons/ytr16.png",
"32": "icons/ytr32.png",
"48": "icons/ytr48.png",
"128": "icons/ytr128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "youtubeRemote@bonehead.org"
}
},
"manifest_version": 3
}