Collaborative bookmarks for teams - Bkmark

Collaborative bookmarks for teams - Bkmark

Where teams and creators save information, share ideas, and discuss the gems they find on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Collaborative bookmarks for teams - Bkmark",
  "description": "Where teams and creators save information, share ideas, and discuss the gems they find on the web.",
  "version": "1.0.30",
  "omnibox": {
    "keyword": "/b"
  },
  "manifest_version": 2,
  "icons": {
    "16": "icons/favicon-16x16.png",
    "32": "icons/favicon-32x32.png",
    "64": "icons/favicon-64x64.png",
    "128": "icons/favicon-128x128.png",
    "256": "icons/favicon-256x256.png",
    "512": "icons/favicon-512x512.png",
    "1024": "icons/favicon-1024x1024.png"
  },
  "permissions": [
    "activeTab",
    "bookmarks",
    "contextMenus",
    "cookies",
    "storage",
    "https://app.bkmark.io/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "32": "icons/favicon-32x32.png"
    },
    "default_title": "Bkmark",
    "default_popup": "popup/popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Space",
        "mac": "Command+Shift+Space",
        "chromeos": "Ctrl+Shift+Space",
        "linux": "Ctrl+Shift+Space"
      }
    }
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.bkmark.io/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}