Browser Note - no more random sticky notes!

Browser Note - no more random sticky notes!

Finally, no more random sticky notes scattered across desktop!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Browser Note - no more random sticky notes!",
  "version": "1.2.4",
  "description": "Finally, no more random sticky notes scattered across desktop!",
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "unlimitedStorage"
  ],
  "background": {
    "service_worker": "assets/js/background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/logo.png",
      "32": "images/logo.png",
      "48": "images/logo.png",
      "128": "images/logo.png"
    }
  },
  "commands": {
    "open": {
      "suggested_key": {
        "default": "Alt+N",
        "mac": "MacCtrl+N",
        "linux": "Ctrl+N"
      },
      "description": "Open Note"
    }
  },
  "icons": {
    "16": "images/logo.png",
    "32": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/css/content.css",
        "images/logo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}