Inspect and view changes in Netflix party with video chat 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"version": "2.0.0",
"default_locale": "en",
"name": "__MSG_appTitle__",
"description": "__MSG_appDesc__",
"content_scripts": [
{
"matches": [
"https://www.netflix.com/*"
],
"js": [
"react-app-holder.js"
]
},
{
"matches": [
"https://www.netflix.com/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "images/icons/grey16.png",
"32": "images/icons/red32.png",
"64": "images/icons/red64.png",
"128": "images/icons/red128.png"
},
"action": {
"default_popup": "index.html"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs",
"storage"
],
"host_permissions": [
"*://*/*"
],
"web_accessible_resources": [
{
"resources": [
"images/*",
"videoScript.js",
"images/icons/*"
],
"matches": [
"<all_urls>"
]
}
]
}