WebNote

WebNote

Take notes directly in the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WebNote",
  "author": {
    "email": "[email protected]"
  },
  "version": "0.0.4",
  "description": "Take notes directly in the page.",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "WebNote",
    "default_icon": {
      "16": "images/16.png",
      "19": "images/19.png",
      "32": "images/32.png",
      "38": "images/38.png",
      "48": "images/48.png",
      "128": "images/128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/utils.js",
        "js/content-script.js"
      ],
      "css": [
        "css/custom.css"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/16.png",
    "19": "images/19.png",
    "32": "images/32.png",
    "38": "images/38.png",
    "48": "images/48.png",
    "128": "images/128.png"
  }
}