Thread Reader

Thread Reader

Read Twitter threads easily and effectively

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Thread Reader",
  "version": "0.0.1",
  "description": "Read Twitter threads easily and effectively",
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_icon": "images/threader.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://*.twitter.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/threader.png",
    "48": "images/threader.png",
    "128": "images/threader.png"
  },
  "short_name": "Threader"
}