Twitter thread reader

Twitter thread reader

Chrome extension that makes reading twitter threads easier.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitter thread reader",
  "description": "Chrome extension that makes reading twitter threads easier.",
  "version": "0.3",
  "manifest_version": 3,
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "host_permissions": [
    "https://twitter.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "/content/contentscript.js"
      ],
      "css": [
        "/styles/index.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "threadResponse.js"
      ],
      "matches": [
        "https://twitter.com/*"
      ]
    }
  ]
}