Shadowban Scanner

Shadowban Scanner

A browser extension that detects shadowbans on Twitter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Shadowban Scanner",
  "short_name": "Shadowban Scanner",
  "version": "3.1.4",
  "description": "__MSG_manifest_description__",
  "icons": {
    "16": "dist/image/icon16.png",
    "48": "dist/image/icon48.png",
    "128": "dist/image/icon128.png"
  },
  "host_permissions": [
    "https://*.twitter.com/*",
    "https://*.x.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*",
        "https://*.x.com/*"
      ],
      "js": [
        "dist/js/contentScript.js"
      ],
      "css": [
        "dist/css/style.css"
      ]
    }
  ],
  "background": {
    "service_worker": "dist/js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "dist/js/pageScript.js",
        "dist/image/*"
      ],
      "matches": [
        "https://*.twitter.com/*",
        "https://*.x.com/*"
      ]
    }
  ],
  "default_locale": "en",
  "action": {
    "default_icon": {
      "16": "dist/image/icon16.png",
      "48": "dist/image/icon48.png",
      "128": "dist/image/icon128.png"
    },
    "default_popup": "dist/html/browserAction.html",
    "default_title": "Shadowban Scanner"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{8fee6fa8-6d95-4b9e-9c51-324c207fabff}"
    },
    "gecko_android": {}
  }
}