Linker - Save. Group. Share.

Linker - Save. Group. Share.

All-in-one Bookmark and Snippets Manager

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Linker - Save. Group. Share.",
  "description": "All-in-one Bookmark and Snippets Manager",
  "homepage_url": "https://getlinker.app",
  "version": "2.0",
  "manifest_version": 3,
  "icons": {
    "16": "icons/favicon-16x16.png",
    "32": "icons/favicon-32x32.png",
    "48": "icons/mstile-70x70.png",
    "128": "icons/mstile-150x150.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "cookies",
    "tabs",
    "contextMenus",
    "bookmarks",
    "storage"
  ],
  "action": {},
  "background": {
    "service_worker": "./static/js/background.js",
    "mode": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "host_permissions": [
    "*://*/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://getlinker.app/*",
      "*://localhost/*",
      "*://app.getlinker.app/*"
    ],
    "accepts_tls_channel_id": false
  }
}