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": 2,
  "name": "Notefox: Websites notes",
  "author": "Saverio Morelli (Sav22999)",
  "version": "4.0",
  "description": "Take notes on every website in a smart and simple way!",
  "icons": {
    "16": "./img/icon.svg",
    "24": "./img/icon.svg",
    "48": "./img/icon.svg",
    "96": "./img/icon.svg"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Alt+O"
      },
      "description": "Open Notefox popup with the default tab"
    },
    "opened-by-domain": {
      "suggested_key": {
        "default": "Ctrl+Alt+D"
      },
      "description": "Open Notefox popup with the current domain tab"
    },
    "opened-by-page": {
      "suggested_key": {
        "default": "Ctrl+Alt+P"
      },
      "description": "Open Notefox popup with the current page tab"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "42.0"
    }
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "./img/icon.svg",
      "24": "./img/icon.svg",
      "48": "./img/icon.svg",
      "96": "./img/icon.svg"
    },
    "theme_icons": [
      {
        "dark": "./img/icon.svg",
        "light": "./img/icon.svg",
        "size": 16
      },
      {
        "dark": "./img/icon.svg",
        "light": "./img/icon.svg",
        "size": 24
      },
      {
        "dark": "./img/icon.svg",
        "light": "./img/icon.svg",
        "size": 48
      },
      {
        "dark": "./img/icon.svg",
        "light": "./img/icon.svg",
        "size": 96
      }
    ],
    "default_title": "Notefox: Websites notes",
    "default_popup": "./popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage",
    "activeTab"
  ],
  "optional_permissions": [
    "<all_urls>",
    "downloads"
  ],
  "background": {
    "scripts": [
      "./js/background.js",
      "./js/api-service.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "./settings/index.html"
  }
}