Polywork for Twitter

Polywork for Twitter

A browser extension to turn Twitter into a Collaboration Network

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Polywork for Twitter",
  "description": "A browser extension to turn Twitter into a Collaboration Network",
  "homepage_url": "https://www.polywork.com/",
  "version": "0.3.0",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "./polywork-twitter.js"
      ]
    }
  ],
  "host_permissions": [
    "https://www.polywork.com/*"
  ],
  "background": {
    "service_worker": "./polywork-background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}