Thread Portal

Thread Portal

Browse Twitter spatially with a graph view

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Thread Portal",
  "description": "Browse Twitter spatially with a graph view",
  "version": "1.0.0",
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "app.js",
    "app.css"
  ],
  "browser_action": {
    "default_title": "Open Thread Portal"
  },
  "permissions": [
    "contextMenus",
    "webRequest",
    "https://twitter.com/",
    "https://api.twitter.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}