Minimal Theme for Twitter / X

Minimal Theme for Twitter / X

Refine and declutter the 𝕏/Twitter web experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Minimal Theme for Twitter / X",
  "short_name": "Minimal Twitter",
  "description": "Refine and declutter the 𝕏/Twitter web experience.",
  "version": "6.0.5",
  "icons": {
    "16": "images/MinimalTwitterIcon16.png",
    "32": "images/MinimalTwitterIcon32.png",
    "48": "images/MinimalTwitterIcon48.png",
    "128": "images/MinimalTwitterIcon128.png"
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "index.html",
    "open_in_tab": true
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://twitter.com/*",
        "https://mobile.twitter.com/*",
        "https://x.com/*"
      ],
      "js": [
        "dist/main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/main.css",
        "css/typefully.css",
        "fonts/inter-subset.woff2",
        "https://cdn.jsdelivr.net/gh/typefully/[email protected]/css/main.css",
        "https://cdn.jsdelivr.net/gh/typefully/[email protected]/css/typefully.css"
      ],
      "matches": [
        "https://twitter.com/*",
        "https://mobile.twitter.com/*",
        "https://x.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/MinimalTwitterIcon16.png",
      "32": "images/MinimalTwitterIcon32.png",
      "48": "images/MinimalTwitterIcon48.png"
    },
    "default_title": "Minimal Twitter",
    "default_popup": "index.html"
  }
}