RealTwit - See Real Twitter Blue Checkmarks

RealTwit - See Real Twitter Blue Checkmarks

See who's really verified on Twitter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "RealTwit - See Real Twitter Blue Checkmarks",
  "short_name": "realTwit",
  "description": "See who's really verified on Twitter",
  "version": "1.0.0",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "background"
  ],
  "host_permissions": [
    "https://*.twitter.com/*",
    "https://realtwit.org/*"
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*",
        "https://realtwit.org/*"
      ],
      "css": [
        "/static/css/content.css"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/media/*",
        "*"
      ],
      "matches": [
        "https://*.twitter.com/*",
        "https://realtwit.com/*"
      ]
    }
  ],
  "icons": {
    "128": "icons/icon_production_128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}