Collabwriting - Shareable Notes on Web Pages

Collabwriting - Shareable Notes on Web Pages

Create shareable notes and highlights on any web page, pdf, youtube & kindle - Organize and collaborate on your research.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Collabwriting - Shareable Notes on Web Pages",
  "description": "Create shareable notes and highlights on any web page, pdf, youtube & kindle - Organize and collaborate on your research.",
  "version": "3.16.3.3",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/load.listener.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/popup.js"
      ],
      "exclude_matches": [
        "https://app.collabwriting.com/*",
        "https://cowrite.me/*",
        "https://www.cowrite.me/*",
        "http://localhost/*"
      ]
    },
    {
      "matches": [
        "https://collabwriting.com/v0.9/snippet**",
        "https://www.collabwriting.com/v0.9/snippet/**"
      ],
      "js": [
        "build/bundle.js"
      ]
    },
    {
      "matches": [
        "https://collabwriting.com/authorizing/**",
        "https://www.collabwriting.com/authorizing/**"
      ],
      "js": [
        "scripts/login.listener.js"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "http://localhost:5000/v/*",
      "http://localhost:5000/auth**",
      "*://app.collabwriting.com/v/**",
      "*://app.collabwriting.com/auth**",
      "*://cowrite.me/v/**",
      "*://cowrite.me/auth**"
    ]
  },
  "host_permissions": [
    "https://*/"
  ],
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "alarms",
    "contextMenus"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}