Twitter tags hider

Twitter tags hider

Hides tags and who to follow and other options

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Twitter tags hider",
  "version": "3.0.9",
  "description": "Hides tags and who to follow and other options",
  "content_scripts": [
    {
      "run_at": "document_start",
      "css": [
        "uistyles.css",
        "styles.css"
      ],
      "js": [
        "arrive.js",
        "repo.js",
        "linkshandler.js",
        "failsafe.js",
        "script.js"
      ],
      "matches": [
        "https://twitter.com/*"
      ]
    }
  ],
  "action": {
    "default_popup": "ui.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  }
}