Hide Blue Checks

Hide Blue Checks

Hide tweets from accounts with blue checkmarks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide Blue Checks",
  "version": "0.0.1",
  "description": "Hide tweets from accounts with blue checkmarks.",
  "homepage_url": "https://github.com/typpo/hide-blue-checks",
  "manifest_version": 3,
  "minimum_chrome_version": "100",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "100.0"
    }
  },
  "icons": {
    "128": "icon.3998fbaf.png"
  },
  "permissions": [],
  "host_permissions": [
    "https://twitter.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "content.b1d20040.js"
      ],
      "run_at": "document_end",
      "css": []
    }
  ]
}