WebLinks for Chrome

WebLinks for Chrome

Save link with picture and keep them organized.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.18.4",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "icons": {
    "128": "images/add2.png"
  },
  "action": {
    "default_popup": "menu.html",
    "default_icon": "images/add3.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "logo.png",
        "images/*.png",
        "options.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "bg.js"
  },
  "manifest_version": 3
}