Inspect and view changes in Twitch Now 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": "Twitch Now",
"version": "1.1.217",
"default_locale": "en",
"manifest_version": 2,
"description": "Explore games & track your favorite streams on Twitch",
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"*://*.twitch.tv/*"
],
"all_frames": true,
"js": [
"common/content/theatre-mode.js"
]
}
],
"background": {
"scripts": [
"common/lib/constants.js",
"common/dist/contributors.js",
"common/lib/3rd/async.js",
"common/lib/3rd/jquery.js",
"common/lib/3rd/underscore.js",
"common/lib/3rd/backbone.js",
"common/lib/3rd/backbone.memento.js",
"common/lib/3rd/backbone.mixin.js",
"common/lib/3rd/eventemitter.js",
"common/lib/utils.js",
"common/lib/oauth2.js",
"background.js",
"common/lib/twitch-api.js",
"common/lib/onerror.js",
"common/lib/app.js"
]
},
"minimum_chrome_version": "1.1.142",
"icons": {
"16": "common/icons/16_1.png",
"48": "common/icons/48_1.png",
"128": "common/icons/128_1.png"
},
"browser_action": {
"default_icon": {
"19": "common/icons/19_2.png",
"38": "common/icons/38_2.png"
},
"default_popup": "common/html/popup.html"
},
"permissions": [
"storage",
"https://*/*",
"http://*/*",
"notifications",
"tabs"
]
}