New Speed: Change the speed of ANY video

New Speed: Change the speed of ANY video

Change video speed on any videos including YouTube, HTML5, Vimeo, and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "New Speed: Change the speed of ANY video",
  "icons": {
    "16": "icons/new_speed_icon_16.png",
    "32": "icons/new_speed_icon_32.png",
    "48": "icons/new_speed_icon_48.png",
    "96": "icons/new_speed_icon_96.png",
    "128": "icons/new_speed_icon_128.png"
  },
  "version": "1.0.0",
  "description": "Change video speed on any videos including YouTube, HTML5, Vimeo, and more!",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  }
}