UnMusk Twitter

UnMusk Twitter

Allows users to choose what types of tweets appear in their timeline, remove paid Bluecheck and to hide Retweets on a per-user basis

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UnMusk Twitter",
  "version": "1.1.5",
  "description": "Allows users to choose what types of tweets appear in their timeline, remove paid Bluecheck and to hide Retweets on a per-user basis",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "jquery.js",
        "arrive.js",
        "contentscript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "UnMusk Twitter",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/ico_16.png",
      "38": "images/ico_38.png",
      "48": "images/ico_48.png",
      "128": "images/ico_128.png"
    }
  },
  "icons": {
    "16": "images/ico_16.png",
    "38": "images/ico_38.png",
    "48": "images/ico_48.png",
    "128": "images/ico_128.png"
  }
}