MapsOfMind: Save to mindmap

MapsOfMind: Save to mindmap

Save the selected text from the active tab to your MapsOfMind map.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MapsOfMind: Save to mindmap",
  "description": "Save the selected text from the active tab to your MapsOfMind map.",
  "version": "1.0.1",
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "notifications",
    "cookies",
    "https://www.mapsofmind.com/*"
  ],
  "background": {
    "scripts": [
      "backgroundScript.js"
    ],
    "persistent": false
  },
  "manifest_version": 2,
  "icons": {
    "64": "images/ico.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_popup": "options.html"
  },
  "options_page": "options.html",
  "commands": {
    "save-text-to-map": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "Save the selected text from the active tab to your MapsOfMind map."
    }
  }
}