Global Speed

Global Speed

Set a default speed for video and audio.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "version": "2.9.9971",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "manifest_version": 2,
  "optional_permissions": [
    "clipboardWrite",
    "clipboardRead"
  ],
  "permissions": [
    "storage",
    "https://*/*",
    "http://*/*",
    "file://*/*",
    "webNavigation"
  ],
  "web_accessible_resources": [
    "ctx.js"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "file://*/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{f4961478-ac79-4a18-87e9-d2fb8c0442c4}"
    }
  }
}