Youtube Line

Youtube Line

Addon locks the YouTube player timeline. Now when player controls disappear, you can see the video timeline.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Line",
  "short_name": "__MSG_description__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.0.4resigned1",
  "author": "Light Alex",
  "options_ui": {
    "page": "options.html",
    "browser_style": false,
    "open_in_tab": true
  },
  "icons": {
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "24": "icons/24.png",
      "32": "icons/32.png"
    }
  },
  "background": {
    "scripts": [
      "files/script/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "browsingData",
    "cookies",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://youtube.com/*",
        "*://www.youtube.com/*"
      ],
      "css": [
        "files/css/style.css"
      ],
      "js": [
        "files/script/jquery-3.2.1.min.js",
        "files/script/postload.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{0c556ff1-da7f-485e-a4f5-ea1673f092ef}"
    }
  }
}