Video Speed Manager

Video Speed Manager

Speed controller for HTML5 videos. Simply manage speed boost, slow down, advance and rewind using keyboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "manifest_version": 3,
  "version": "1.0.0",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/icon-16.png",
      "19": "img/icon-19.png",
      "38": "img/icon-38.png",
      "48": "img/icon-48.png",
      "128": "img/icon-128.png"
    }
  },
  "icons": {
    "16": "img/icon-16.png",
    "19": "img/icon-19.png",
    "38": "img/icon-38.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "service_worker": "js/service_worker.js"
  },
  "permissions": [
    "alarms",
    "storage"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "css/content.css",
        "css/shadow.css"
      ],
      "exclude_matches": [
        "https://plus.google.com/hangouts/*",
        "https://hangouts.google.com/hangouts/*",
        "https://meet.google.com/*",
        "https://teamtreehouse.com/*",
        "http://www.hitbox.tv/*"
      ],
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://*/*",
        "file:///*"
      ]
    }
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}