Goodbye, t.co! - bypass t.co links

Goodbye, t.co! - bypass t.co links

This extension lets you skip any t.co links. It will speed up your daily Twitter productivity -- if there is such a thing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Goodbye, t.co! - bypass t.co links",
  "version": "1.8",
  "manifest_version": 2,
  "description": "This extension lets you skip any t.co links. It will speed up your daily Twitter productivity -- if there is such a thing.",
  "permissions": [
    "*://*.twitter.com/*",
    "*://twitter.com/*"
  ],
  "icons": {
    "16": "Goodbye_t_co_icon_16_v1.png",
    "48": "Goodbye_t_co_icon_48_v1.png",
    "128": "Goodbye_t_co_icon_v1.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*",
        "*://twitter.com/*"
      ],
      "js": [
        "goodbye-t.co.js"
      ],
      "run_at": "document_end"
    }
  ]
}