Clean Twitter

Clean Twitter

Clean up some annoying elements on Twitter and make your Twitter experience cleaner. ✨ Features - Hide home tabs - Hide timeline:…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Clean Twitter",
  "version": "0.10.0",
  "action": {
    "default_popup": "index.html"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "src/assets/16.png",
    "32": "src/assets/32.png",
    "48": "src/assets/48.png",
    "128": "src/assets/128.png"
  },
  "content_scripts": [
    {
      "js": [
        "assets/main.ts-loader-344fb11c.js"
      ],
      "matches": [
        "https://twitter.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "assets/listenRefreshToken.ts-loader-281212f2.js"
      ],
      "matches": [
        "https://clean-twitter.rxliuli.com/callback/*",
        "http://localhost:5173/callback/*"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "https://github.com/*",
    "https://api.github.com/*"
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "resources": [
        "assets/i18n-9ae49778.js",
        "assets/config-c941dcb1.js",
        "assets/index-cfc70641.js",
        "assets/browser-polyfill-25eb19c2.js",
        "assets/_commonjsHelpers-2155838d.js",
        "assets/main.ts-2cc7b8d9.js"
      ],
      "use_dynamic_url": true
    },
    {
      "matches": [
        "http://localhost:5173/*",
        "https://clean-twitter.rxliuli.com/*"
      ],
      "resources": [
        "assets/browser-polyfill-25eb19c2.js",
        "assets/index-cfc70641.js",
        "assets/i18n-9ae49778.js",
        "assets/github-75e34927.js",
        "assets/_commonjsHelpers-2155838d.js",
        "assets/listenRefreshToken.ts-e23d8025.js"
      ],
      "use_dynamic_url": true
    }
  ]
}