Notefox: Websites notes

Notefox: Websites notes

Take notes on every website in a smart and simple way!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Notefox: Websites notes",
  "author": "Saverio Morelli (Sav22999)",
  "version": "3.10.1",
  "description": "Take notes on every website in a smart and simple way!",
  "icons": {
    "16": "./img/icons/icon-16.png",
    "48": "./img/icons/icon-48.png",
    "128": "./img/icons/icon-128.png"
  },
  "action": {
    "default_icon": {
      "16": "./img/icons/icon-16.png",
      "48": "./img/icons/icon-48.png",
      "128": "./img/icons/icon-128.png"
    },
    "default_popup": "./popup.html",
    "default_title": "Notefox: Websites notes"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "optional_permissions": [
    "downloads",
    "scripting"
  ],
  "background": {
    "service_worker": "./js/background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "./settings/index.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}