Twitter Auto Show

Twitter Auto Show

Auto show sensitive content on twitter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Twitter Auto Show",
  "version": "1.2.2",
  "description": "Auto show sensitive content on twitter",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "./16x16.png",
    "32": "./32x32.png",
    "48": "./48x48.png",
    "128": "./128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content/content_script.js",
        "content/jquery-3.7.1.min.js"
      ],
      "matches": [
        "https://twitter.com/*",
        "https://x.com/*"
      ]
    }
  ]
}