Beyond Comments

Beyond Comments

A Browser Extension allows you to make comment on any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Beyond Comments",
  "version": "0.2.2",
  "description": "A Browser Extension allows you to make comment on any website.",
  "action": {
    "default_icon": {
      "32": "./assets/favicon-32.png",
      "48": "./assets/favicon-48.png",
      "128": "./assets/favicon-128.png",
      "512": "./assets/favicon-512.png"
    },
    "default_popup": "./dist/popup/index.html"
  },
  "options_ui": {
    "page": "./dist/options/index.html",
    "open_in_tab": true
  },
  "icons": {
    "32": "./assets/favicon-32.png",
    "48": "./assets/favicon-48.png",
    "128": "./assets/favicon-128.png",
    "512": "./assets/favicon-512.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./dist/contentScripts/index.global.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/contentScripts/style.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}