teamlink

teamlink

Easiest way to sync, collaborate and search bookmarks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Easiest way to sync, collaborate and search bookmarks",
  "version": "0.1.1",
  "name": "teamlink",
  "manifest_version": 2,
  "homepage_url": "http://getteamlink.web.app",
  "icons": {
    "16": "static/assets/icons/16.png",
    "24": "static/assets/icons/24.png",
    "32": "static/assets/icons/32.png",
    "64": "static/assets/icons/64.png",
    "128": "static/assets/icons/128.png"
  },
  "browser_action": {},
  "options_page": "static/options.html",
  "background": {
    "page": "static/background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/js/jquery-3.6.0.slim.min.js",
        "content.js"
      ]
    }
  ],
  "commands": {
    "toggleBookmark": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      },
      "description": "Add/Remove Bookmark"
    }
  },
  "omnibox": {
    "keyword": "l"
  },
  "permissions": [
    "tabs",
    "storage",
    "bookmarks",
    "activeTabs"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}