Twitter Follower Blocker

Twitter Follower Blocker

Bulk tool for blocking Twitter followers.

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 Follower Blocker",
  "short_name": "TwitBlock",
  "description": "Bulk tool for blocking Twitter followers.",
  "version": "0.0.3",
  "permissions": [
    "tabs",
    "https://twitter.com/followers"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/followers"
      ],
      "js": [
        "jquery.js",
        "page.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_title": "Block Followers",
    "default_icon": "icon48.png"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}