Permanent Progress Bar for YouTube

Permanent Progress Bar for YouTube

Display tiny progress bar on YouTbue player even in the fullscreen mode

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Permanent Progress Bar for YouTube",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "0.2.2",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "*://www.youtube.com/*"
  ],
  "background": {
    "scripts": [
      "/v2/chrome.runtime.js",
      "/v2/chrome.scripting.js",
      "worker.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "data/inject.js"
      ],
      "css": [
        "data/inject.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "homepage_url": "https://add0n.com/youtube-tools.html?from=progress",
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png",
    "256": "data/icons/256.png",
    "512": "data/icons/512.png"
  },
  "options_ui": {
    "page": "data/options/index.html"
  },
  "commands": {
    "toggle_display": {
      "description": "Use this shortcut to show or hide the permanent progress bar"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{af838dcd-be8a-4237-8835-69fca92171d3}"
    }
  }
}