Examine source code of Pickvocab: AI-powered dictionary

Inspect and view changes in Pickvocab: AI-powered dictionary 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": "Pickvocab: AI-powered dictionary",
  "description": "Unlock precise meanings instantly while browsing, powered by AI",
  "version": "0.0.18",
  "icons": {
    "16": "pickvocab-16.png",
    "32": "pickvocab-32.png",
    "48": "pickvocab-48.png",
    "96": "icon/96.png",
    "128": "pickvocab-128.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab",
    "identity"
  ],
  "host_permissions": [
    "https://api.pickvocab.com//"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Command+Shift+K"
      },
      "description": "Open Pickvocab popup"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pickvocab.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "content-scripts/content.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "oauth2": {
    "client_id": "1062383996574-bjuibq4tqq1ho90qabvtsh0035l9ncts.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Pickvocab",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}