Geekmarks client

Geekmarks client

Client for Geekmarks: a Free, Open-Source, API-Driven, Geeky Bookmarking Service

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Geekmarks client",
  "short_name": "Geekmarks",
  "description": "Client for Geekmarks: a Free, Open-Source, API-Driven, Geeky Bookmarking Service",
  "version": "0.22",
  "browser_action": {
    "default_icon": "/images/icon.png",
    "default_popup": "/core/popup.html",
    "default_title": "test"
  },
  "background": {
    "scripts": [
      "/common/webui/vendor/jquery/jquery.min.js",
      "/common/core/vendor/reconnecting-websocket/reconnecting-websocket.js",
      "/common/core/gmclient.js",
      "/core/options.js",
      "/core/gmclient-factory.js",
      "/core/background.js"
    ]
  },
  "commands": {
    "query-bookmark": {
      "suggested_key": {
        "default": "Ctrl+B"
      },
      "description": "Find bookmark"
    },
    "add-bookmark": {
      "suggested_key": {
        "default": "Ctrl+Shift+B"
      },
      "description": "Create bookmark"
    },
    "tags-tree": {
      "description": "View / Edit tags tree"
    }
  },
  "options_page": "/options-page/options-page.html",
  "permissions": [
    "identity",
    "storage",
    "activeTab",
    "https://geekmarks.dmitryfrank.com/*"
  ]
}