Centralizer

Centralizer

Return YouTube back to centre of your browser window

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "css/centralizer.css"
      ],
      "js": [
        "js/jquery.js",
        "js/underscore.js",
        "js/centralizerContentScript.js"
      ],
      "matches": [
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Return YouTube back to centre of your browser window",
  "icons": {
    "32": "icons/centralizer-32.png",
    "48": "icons/centralizer-48.png",
    "128": "icons/centralizer-128.png"
  },
  "name": "Centralizer",
  "version": "0.2",
  "manifest_version": 2
}