Video Speed Changer

Video Speed Changer

This extension adds a ribbon on top of videos (works with youtube also) that allows users to change the playback speeds from 1x to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Video Speed Changer",
  "version": "1.0",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "browser_action": {
    "default_title": "Video Speed Changer",
    "default_icon": {
      "19": "icon-19.png",
      "38": "icon-38.png",
      "128": "icon-128.png"
    }
  },
  "background": {
    "scripts": [
      "VideoSpeedChangerLoader.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab"
  ]
}