Twitter AdBlock

Twitter AdBlock

Removes promoted links in timelines, following & trends. Bypasses Twitter's link warning & auto directs links clicked within tweets

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitter AdBlock",
  "manifest_version": 2,
  "version": "1.2",
  "description": "Removes promoted links in timelines, following & trends. Bypasses Twitter's link warning & auto directs links clicked within tweets",
  "browser_action": {
    "name": "Manipulate DOM",
    "icons": [
      "icon.png"
    ],
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "background.js"
      ],
      "matches": [
        "http://*.twitter.com/*",
        "https://*.twitter.com/*"
      ]
    }
  ]
}