Commented | Collaboration enabled!

Commented | Collaboration enabled!

Seamlessly comment and chat on your digital products

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Commented | Collaboration enabled!",
  "description": "Seamlessly comment and chat on your digital products",
  "version": "0.6.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Commented.io"
  },
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "background",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*.auth0.com/u/*",
        "https://*/projects/editor/*",
        "http://*/projects/editor/*",
        "https://*/pccmmntd/*"
      ],
      "js": [
        "./static/js/content.js",
        "webcomponents-bundle.js",
        "latest.js",
        "./static/js/additional.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon128.png"
      ],
      "matches": [
        "*://localhost/*",
        "*://*.commented.io/*"
      ]
    }
  ]
}