HTML5 Video Controller

HTML5 Video Controller

This extension provides additional controls to Youtube, Vimeo, Dailymotion, or any other HTML5 videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HTML5 Video Controller",
  "version": "0.0.5",
  "manifest_version": 2,
  "description": "This extension provides additional controls to Youtube, Vimeo, Dailymotion, or any other HTML5 videos.",
  "homepage_url": "https://github.com/angelachieh/youtube-controls",
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "browser_action": {
    "default_icon": "img/icon_19.png",
    "default_title": "HTML5 Video Controller",
    "default_popup": "views/popup.html"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "all_frames": true
    }
  ]
}