Youtube™ Shortcuts

Youtube™ Shortcuts

Focus on the Youtube player with a the press of a button

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Youtube™ Shortcuts",
  "version": "1.7.2",
  "description": "Focus on the Youtube player with a the press of a button",
  "homepage_url": "https://phamdaniel.github.io",
  "options_page": "options.html",
  "icons": {
    "16": "imgs/16.png",
    "48": "imgs/48.png",
    "128": "imgs/128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "lib/facebox.css",
        "popup.css"
      ],
      "js": [
        "lib/jquery-3.0.0.min.js",
        "lib/keymaster.min.js",
        "lib/facebox.js",
        "injected.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "popup.html"
  ]
}