vBookmarks

vBookmarks

A popup bookmark manager. Enhanced Neat Bookmarks. Neater than Neater Bookmarks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "version": "3.6",
  "description": "__MSG_extDesc__",
  "manifest_version": 3,
  "homepage_url": "https://chrome.google.com/webstore/detail/odhjcodnoebmndcihdedenkmdmklpihb",
  "update_url": "http://clients2.google.com/service/update2/crx",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "19": "icon.png",
      "32": "icon32.png",
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_title": "vBookmarks",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+V",
        "mac": "Command+Shift+V",
        "chromeos": "Ctrl+Shift+V",
        "linux": "Ctrl+Shift+V"
      }
    }
  },
  "permissions": [
    "bookmarks",
    "tabs",
    "favicon"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "img-src 'self' data:; default-src 'self'; style-src 'self' 'unsafe-inline';"
  },
  "minimum_chrome_version": "88.0.0.0",
  "default_locale": "en",
  "omnibox": {
    "keyword": "*"
  }
}