StayNote - the notebook that's always there

StayNote - the notebook that's always there

Keep your to-do's and notes pinned no matter which webpage you visit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.0.3",
  "manifest_version": 3,
  "name": "StayNote - the notebook that's always there",
  "description": "Keep your to-do's and notes pinned no matter which webpage you visit",
  "action": {
    "default_popup": "js/index.html",
    "default_title": "React Chrome Extension"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.js",
        "*.css",
        "*.html",
        "*.json",
        "*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "32": "icon-32.png",
    "48": "icon-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}