[STG plugin] Group notes

[STG plugin] Group notes

Create notes for group

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "browser_specific_settings": {
    "gecko": {
      "id": "stg-plugin-group-notes@drive4ik",
      "strict_min_version": "112.0"
    }
  },
  "incognito": "not_allowed",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "2.0.1",
  "author": "Drive4ik",
  "homepage_url": "https://github.com/drive4ik/simple-tab-groups",
  "icons": {
    "96": "icons/icon.svg"
  },
  "action": {
    "default_icon": "icons/icon.svg",
    "default_title": "__MSG_extensionName__",
    "default_popup": "popup/popup.html",
    "browser_style": false
  },
  "sidebar_action": {
    "default_icon": "icons/icon.svg",
    "default_title": "__MSG_extensionName__",
    "default_panel": "popup/popup.html#sidebar",
    "browser_style": false,
    "open_at_install": false
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "type": "module"
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "menus",
    "notifications",
    "storage",
    "unlimitedStorage"
  ],
  "default_locale": "en",
  "commands": {
    "_execute_action": {
      "description": "__MSG_openPopupTitle__"
    },
    "_execute_sidebar_action": {
      "description": "__MSG_openSidebarTitle__"
    }
  }
}