Inspect and view changes in anytimeNetflixPause 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": "anytimePause",
"version": "1.1",
"author": "Mozilla",
"description": "Allows pausing of Netflix with space bar while next episode is loading",
"background": {
"scripts": [
"anytimePause.js"
]
},
"icons": {
"48": "icons/anytimePause-48.png"
},
"content_scripts": [
{
"matches": [
"*://*.netflix.com/*"
],
"js": [
"anytimePause.js"
]
}
],
"permissions": [
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "{d349cc25-6abb-4d40-96a1-c835abe307a0}"
}
}
}