Content Language Filter for X

Content Language Filter for X

Add your preferred language to the filter list and filter out tweets that are not in your preferred language.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "[email protected]",
  "description": "Add your preferred language to the filter list and filter out tweets that are not in your preferred language.",
  "name": "Content Language Filter for X",
  "version": "0.0.3",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icons/iconbg.png",
      "19": "icons/iconbg.png",
      "32": "icons/iconbg.png",
      "38": "icons/iconbg.png"
    },
    "default_popup": "src/entries/popup/index.html"
  },
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "src/entries/contentScript/primary/main.js"
      ],
      "matches": [
        "https://twitter.com/home"
      ]
    }
  ],
  "icons": {
    "16": "icons/iconbg.png",
    "19": "icons/iconbg.png",
    "32": "icons/iconbg.png",
    "38": "icons/iconbg.png",
    "48": "icons/iconbg.png",
    "64": "icons/iconbg.png",
    "96": "icons/iconbg.png",
    "128": "icons/iconbg.png",
    "256": "icons/iconbg.png",
    "512": "icons/iconbg.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/src/entries/contentScript/primary/main-UGPVFv2T.js",
        "assets/preload-helper-6q4Tou1E.js",
        "assets/chunk-QIZ4XBKF-wz5EzUG1.js",
        "assets/_commonjsHelpers-5-cIlDoe.js"
      ],
      "matches": [
        "https://twitter.com/*"
      ],
      "use_dynamic_url": true
    }
  ]
}