Video Speed Controller - video manager

Video Speed Controller - video manager

Speed controller for HTML5 videos. Manage video speed, speed up using video speed playback. Video speed control.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "version": "1.0.8",
  "manifest_version": 3,
  "minimum_chrome_version": "89",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "icons": {
    "48": "assets/48.png",
    "64": "assets/64.png",
    "128": "assets/128.png"
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": {
      "48": "assets/48.png",
      "64": "assets/64.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "match_about_blank": true,
      "exclude_matches": [
        "https://plus.google.com/hangouts/*",
        "https://hangouts.google.com/*",
        "https://meet.google.com/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "javascript/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/content.css",
        "css/shade.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ]
    }
  ]
}