Markie

Markie

Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Markie",
  "description": "Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.",
  "version": "1.2.2",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "32": "icons/markie-new-32.png",
    "128": "icons/markie-new-128.png"
  },
  "browser_action": {
    "default_title": "Markie",
    "default_icon": {
      "32": "icons/markie-new-bw-32.png",
      "128": "icons/markie-new-bw-128.png"
    }
  },
  "commands": {
    "_execute_browser_action": {
      "description": "Save Bookmark to Markie",
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "mac": "Command+Shift+Space"
      }
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "popup/getSource.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "popup/save/save.html"
  ]
}