↺ Netflix Rewind 1 sec

↺ Netflix Rewind 1 sec

Allows you to ↺ rewind the videoplayer on netflix.com by 1 second each time you press the   <⃣   key. The amount of seconds to seek can be adjusted via the 🛠️ Options page.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "4.0.1",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "icons": {
    "48": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.netflix.com/*"
      ],
      "js": [
        "browser-polyfill.min.js",
        "contentscript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "netflix-rewind-1-sec.js"
      ],
      "matches": [
        "*://www.netflix.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{8e51a86a-e712-4386-a231-a9c3d06f3348}",
      "strict_min_version": "109.0"
    }
  }
}