Twetter - Twitter/X UI Tweaks

Twetter - Twitter/X UI Tweaks

Hide specific elements on the page to adjust your experience on Twitter/X

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_popup": "src/popup/index.html"
  },
  "background": {
    "service_worker": "src/plugins/worker.js"
  },
  "content_scripts": [
    {
      "css": [
        "src/styles/content.css"
      ],
      "js": [
        "src/plugins/jquery-3.7.1.min.js",
        "src/plugins/lz-string.min.js",
        "src/OWUAPI.js",
        "src/OWU.js",
        "src/main.js"
      ],
      "matches": [
        "https://twitter.com/*",
        "https://x.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Hide specific elements on the page to adjust your experience on Twitter/X",
  "icons": {
    "16": "img/icon/icon-16.png",
    "32": "img/icon/icon-32.png",
    "48": "img/icon/icon-48.png",
    "128": "img/icon/icon-128.png"
  },
  "manifest_version": 3,
  "name": "Twetter - Twitter/X UI Tweaks",
  "permissions": [
    "storage",
    "downloads",
    "unlimitedStorage"
  ],
  "version": "1.3.0.8",
  "web_accessible_resources": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://x.com/*"
      ],
      "resources": [
        "img/loading.svg",
        "img/download.svg",
        "img/downloaded.svg",
        "img/fetch.svg",
        "img/trash.svg"
      ]
    }
  ]
}