Threadia

Threadia

You can read the threads as blog posts and share the blog pages as threads in a click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Threadia",
  "short_name": "Threadia",
  "version": "0.0.0.3",
  "version_name": "0.0.0.3",
  "description": "You can read the threads as blog posts and share the blog pages as threads in a click.",
  "browser_action": {
    "default_icon": "icons/threadia-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://threadia.com/*",
        "https://twitter.com/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icons/threadia-16.png",
    "48": "icons/threadia-48.png",
    "128": "icons/threadia-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "homepage_url": "https://threadia.com/",
  "permissions": [
    "storage",
    "contextMenus",
    "tabs",
    "https://threadia.com/*",
    "https://twitter.com/*",
    "https://medium.com/*"
  ]
}