Inspect and view changes in Navigate Netflix with Keyboard 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": "Navigate Netflix with Keyboard",
"version": "0.1.1",
"description": "Browse Netflix website with your Keyboard Arrow Keys.",
"icons": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"browser_action": {
"default_title": "Navigate Netflix with Keyboard",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://www.netflix.com/*"
],
"run_at": "document_end",
"js": [
"contentScript.js"
],
"css": [
"contentScript.css"
]
}
]
}