Send Note to Device

Send Note to Device

Send Note to Device allows you to send current URL with a note (message) to different devices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "3.9",
  "author": "Juraj Mäsiar",
  "default_locale": "en",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_desc__",
  "icons": {
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "service_worker": "background.loader.js"
  },
  "action": {
    "default_icon": {
      "128": "128.png"
    },
    "default_popup": "popup/popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+M"
      }
    }
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "contextMenus",
    "storage",
    "alarms",
    "scripting",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "128.png",
        "utils/svg/resize-corner.svg",
        "note/note.css",
        "note/note.html",
        "note/note.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}