Hide X/Twitter Elements

Hide X/Twitter Elements

This extension hides specified elements on the X/Twitter website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "HTE",
  "version": "2.10.15",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "48": "twit48.png",
    "128": "twit128.png"
  },
  "action": {
    "default_icon": "twit48.png",
    "default_title": "Hide X/Twitter Elements"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "functions.js",
        "twitterstyle.js"
      ],
      "matches": [
        "http://www.twitter.com/*",
        "https://www.twitter.com/*",
        "http://twitter.com/*",
        "https://twitter.com/*",
        "http://www.x.com/*",
        "https://www.x.com/*",
        "http://x.com/*",
        "https://x.com/*"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage"
  ]
}