Twitter Background Restorer

Twitter Background Restorer

Restores your own twitter background, instead of the horrible white one.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Twitter Background Restorer",
  "version": "2.1.0",
  "description": "Restores your own twitter background, instead of the horrible white one.",
  "author": "Mika (Autophagy)",
  "homepage_url": "https://github.com/Autophagy/twitter-bg-restorer",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "http://*.twitter.com/",
    "https://*.twitter.com/",
    "unlimitedStorage",
    "storage"
  ],
  "options_page": "options/options.html",
  "content_scripts": [
    {
      "matches": [
        "http://twitter.com/*",
        "https://twitter.com/*",
        "http://www.twitter.com/*",
        "https://www.twitter.com/*"
      ],
      "js": [
        "content_script/content_script.js"
      ],
      "run_at": "document_idle"
    }
  ]
}