Video Bar

Video Bar

Customizable progress bar for Youtube videos and other web sites

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 Bar",
  "version": "0.0.7",
  "description": "Customizable progress bar for Youtube videos and other web sites",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "ico/16.png",
      "48": "ico/48.png",
      "128": "ico/128.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "js": [
        "bar_on.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "icons": {
    "16": "ico/16.png",
    "48": "ico/48.png",
    "128": "ico/128.png"
  }
}