PrivateFavorites

PrivateFavorites

A Chrome Extension of a Favorite with Privacy Protection Capability

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PrivateFavorites",
  "version": "0.2.4",
  "description": "A Chrome Extension of a Favorite with Privacy Protection Capability",
  "icons": {
    "16": "/static/image/icon.png",
    "48": "/static/image/icon.png",
    "128": "/static/image/icon.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "bookmarks",
    "history",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "/static/image/icon.png",
      "48": "/static/image/icon.png",
      "128": "/static/image/icon.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+X",
        "mac": "Alt+X"
      }
    }
  },
  "options_ui": {
    "page": "index.html#/pages/options/options",
    "open_in_tab": true
  }
}