HTML5 Video Tag Enhancer

HTML5 Video Tag Enhancer

Color Adjustment/10Band EQ/Chorus/Delay/Reverb/Playback Rate/Loop/Panels

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HTML5 Video Tag Enhancer",
  "description": "Color Adjustment/10Band EQ/Chorus/Delay/Reverb/Playback Rate/Loop/Panels",
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "js/contentscript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "19": "img/icon19.png"
    },
    "default_title": "HTML5 Video Tag Enhancer",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "icons": {
    "16": "img/icon16.png",
    "128": "img/icon128.png"
  },
  "web_accessible_resources": [
    "Impulse/*"
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "notifications"
  ],
  "version": "2.1"
}