Note Anywhere

Note Anywhere

Make notes on any web page, any position.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Note Anywhere",
  "version": "1.0.2",
  "icons": {
    "16": "assets/icons/note_sticky_icon_16.png",
    "32": "assets/icons/note_sticky_icon_32.png",
    "48": "assets/icons/note_sticky_icon_48.png",
    "128": "assets/icons/note_sticky_icon_128.png"
  },
  "description": "Make notes on any web page, any position.",
  "homepage_url": "https://myatoms.io",
  "short_name": "Note Anywhere",
  "permissions": [
    "tabs",
    "contextMenus",
    "alarms",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "author": "William",
  "minimum_chrome_version": "88",
  "action": {
    "default_icon": {
      "16": "assets/icons/note_sticky_icon_16.png",
      "32": "assets/icons/note_sticky_icon_32.png",
      "48": "assets/icons/note_sticky_icon_48.png",
      "128": "assets/icons/note_sticky_icon_128.png"
    },
    "default_title": "Note AnyWhere",
    "default_popup": "popup.html",
    "chrome_style": false
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "externally_connectable": {
    "matches": [
      "https://*.myatoms.io/*",
      "http://localhost:9000/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/contentScript.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "assets/css/sticky.css",
        "assets/icons/note_sticky_icon_48.png"
      ]
    }
  ]
}