Comment Like Figma on Web

Comment Like Figma on Web

Introducing the ultimate web commenting tool! With our extension installed, you can leave your thoughts and opinions on any…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Comment Like Figma on Web",
  "description": "",
  "version": "1.0",
  "icons": {
    "16": "images/favicon-16x16.png",
    "32": "images/favicon-32x32.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/importStyle.css"
      ]
    }
  ],
  "action": {
    "default_icon": "images/favicon-16x16.png",
    "default_popup": "templates/popup.html",
    "detault-title": "Comment Like Figma on Web"
  },
  "background": {
    "service_worker": "script/eventPage.js"
  },
  "permissions": [
    "storage",
    "scripting",
    "notifications",
    "contextMenus",
    "activeTab",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "options_page": "templates/options.html"
}