Twitter  Blocker

Twitter Blocker

Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitter  Blocker",
  "description": "Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.",
  "version": "1.0",
  "short_name": "RecordRTC",
  "author": "Obodugo Rapheal, Zacchaeus Bolaji",
  "manifest_version": 2,
  "minimum_chrome_version": "49",
  "homepage_url": "https://obodugo.com",
  "icons": {
    "16": "icon.png",
    "22": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "declarativeContent",
    "storage",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "script.js"
      ],
      "matches": [
        "*://*.twitter.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Twitter Blocker",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}