Twitter Toolbox

Twitter Toolbox

Provides several tools to change the Twitter website to suit you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Twitter Toolbox",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Provides several tools to change the Twitter website to suit you.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "page_action": {
    "default_icon": "icons/icon48.png",
    "default_popup": "options.html",
    "default_title": "Twitter Toolbox"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*"
      ],
      "js": [
        "js/jquery-1.8.3.min.js",
        "js/waitForKeyElements.js",
        "js/twitterstyle.js"
      ],
      "run_at": "document_end"
    }
  ]
}