YouTube Video Center

YouTube Video Center

Youtube Video Center changes the new Youtube design and centers the whole Youtube page on the screen automatically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "YouTube Video Center",
  "description": "YouTube Video Center",
  "default_locale": "en",
  "version": "61.27resigned1",
  "icons": {
    "32": "images/icons/icon_32.png",
    "48": "images/icons/icon_48.png",
    "128": "images/icons/icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icons/icon_24.png",
    "default_popup": "popup.html",
    "default_title": "YouTube Video Center"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "scripts/content_script.js"
      ],
      "matches": [
        "*://*.youtube.com/watch*",
        "*://*.youtube.com/embed*"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "js": [
        "scripts/content_script_st.js"
      ],
      "matches": [
        "*://*.barisderin.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "management",
    "downloads",
    "cookies",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "style/*",
    "scripts/*"
  ],
  "applications": {
    "gecko": {
      "id": "{34878998-c8be-40bc-bc13-9243a2844976}"
    }
  }
}