LinkCollect - Save & Share Bookmarks

LinkCollect - Save & Share Bookmarks

linkcollect is the simplest way to save & share web links, bookmarks or tabs from anywhere to anyone

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LinkCollect - Save & Share Bookmarks",
  "version": "1.1.3",
  "description": "linkcollect is the simplest way to save & share web links, bookmarks  or tabs from anywhere to anyone",
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "contextMenus"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "save-current-tab": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "Alt+C"
      },
      "description": "Inject a save recent collection "
    },
    "save-all-tabs": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      },
      "description": "Inject a save all tabs script"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+W"
      },
      "description": "Start the extension"
    }
  },
  "icons": {
    "16": "favicon.png",
    "19": "favicon.png",
    "32": "favicon.png",
    "48": "favicon.png",
    "128": "favicon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/bookmark.png",
        "approve.png",
        "failed.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_title": "LinkCollect",
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}