Thread Saver

Thread Saver

Extract Twitter threads into a single page to import or share anywhere.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "version": "0.1.3",
  "description": "__MSG_description__",
  "icons": {
    "128": "content/icon-128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*/status/*",
        "*://www.twitter.com/*/status/*"
      ],
      "js": [
        "content_scripts/cs.js"
      ],
      "css": [
        "content/cs.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "content/*.*",
    "scripts/*.*"
  ],
  "options_page": "index.html",
  "default_locale": "en",
  "manifest_version": 2
}