Examine source code of PrivateFavorites

Inspect and view changes in PrivateFavorites source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "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
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}