Tweet Count Guard

Tweet Count Guard

Take control of your Twitter feed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tweet Count Guard",
  "description": "Take control of your Twitter feed",
  "version": "0.0.4",
  "author": "Andrew Chen",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*"
      ],
      "css": [
        "content_scripts/css/style.css"
      ],
      "js": [
        "content_scripts/content.js",
        "content_scripts/injected.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://*.twitter.com/*"
      ],
      "resources": [
        "common/*.js",
        "content_scripts/*.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/popup.html",
    "default_title": "Open popup"
  }
}