Send Note to Device

Send Note to Device

Do you use "Send Tab to Device" feature❓ This is similar, but you can send a text message with your tab. 🕑 You will also see the history or received and send messages. 🔥 Powered by "Firefox Sync" engine!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "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": {
    "scripts": [
      "background/background_sntd.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_area": "navbar",
    "default_icon": {
      "128": "128.png"
    },
    "default_popup": "popup/popup.html"
  },
  "commands": {
    "_execute_browser_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": [
    "128.png",
    "utils/svg/resize-corner.svg",
    "note/note.css",
    "note/note.html",
    "note/note.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]_SendNoteToDevice",
      "strict_min_version": "115.0"
    }
  }
}