A simple application for the lazy, to not have to click the "Continue Watching" button in Netflix. It will remove the UI Permanently, so you can continue your binge session.
Versions & Updates:
1.2.1 : Firefox Release
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 Pause Removal",
"version": "1.2.2resigned1",
"author": "Prescott Gallagher",
"description": "Remove the pause between netflix episodes",
"browser_action": {
"default_icon": "icon.png"
},
"short_name": "Netflix PR",
"content_scripts": [
{
"matches": [
"*://www.netflix.com/*"
],
"js": [
"background.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{83fedf0b-1d1c-458e-ac83-f5db9a031340}"
}
}
}