Examine source code of OneClick AI

Inspect and view changes in OneClick AI 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "OneClick AI",
  "version": "1.8.2.25069",
  "version_name": "1.8.2.25069 (03/10/2025)",
  "description": "Instantly understand web content and extract key points with AI-powered summarization and translation with just one click.",
  "action": {
    "default_icon": {
      "16": "./assets/icons/icon-16.png",
      "32": "./assets/icons/icon-32.png",
      "48": "./assets/icons/icon-48.png",
      "128": "./assets/icons/icon-128.png"
    }
  },
  "icons": {
    "16": "./assets/icons/icon-16.png",
    "32": "./assets/icons/icon-32.png",
    "48": "./assets/icons/icon-48.png",
    "128": "./assets/icons/icon-128.png"
  },
  "options_page": "options/options.html",
  "background": {
    "service_worker": "background/background.js"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "contextMenus"
  ],
  "optional_permissions": [
    "clipboardWrite",
    "notifications"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Activate the extension"
    },
    "OneClick AI": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Activate OneClick AI"
    }
  },
  "optional_host_permissions": [
    "https://oneclick.greatcolor.ai/*"
  ]
}