Mindomo Bookmarks

Mindomo Bookmarks

Capture links, images, text snippets to Mindomo and organize them in a mind map.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mindomo Bookmarks",
  "short_name": "Mindomo Bookmarks",
  "manifest_version": 2,
  "version": "2.4",
  "description": "Capture links, images, text snippets to Mindomo and organize them in a mind map.",
  "icons": {
    "16": "skin/16.png",
    "48": "skin/48.png",
    "128": "skin/128.png"
  },
  "default_locale": "en_US",
  "minimum_chrome_version": "20",
  "background": {
    "scripts": [
      "jquery.js",
      "serverUrl.js",
      "server.js",
      "common.js",
      "extension.js"
    ]
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "skin/16.png",
    "default_title": "Save page link to Mindomo"
  },
  "web_accessible_resources": [
    "skin/*.png"
  ],
  "permissions": [
    "contextMenus",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.js",
        "progress.js",
        "contentscript.js"
      ]
    }
  ]
}