Inspect and view changes in Netflix Movie Ratings 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": "Netflix Movie Ratings",
"version": "1.0.2",
"description": "Browser Extension to show IMDb ratings on Netflix",
"icons": {
"128": "public/icon-128.png"
},
"web_accessible_resources": [
"public/*",
"assets/*"
],
"browser_action": {
"default_popup": "popup/index-GLUIMGHF.html",
"default_icon": "public/icon-34.png"
},
"content_scripts": [
{
"matches": [
"http://netflix.com/*",
"https://netflix.com/*",
"https://*.netflix.com/*",
"http://*.netflix.com/*"
],
"js": [
"content/index.js"
],
"css": [],
"run_at": "document_start"
}
],
"browser_specific_settings": {
"gecko": {
"id": "{caee3004-79ab-4c1a-b9f4-b0d961e2e8b7}"
}
}
}