Examine source code of Spell Check

Inspect and view changes in Spell Check 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": "__MSG_appName__",
  "description": "__MSG_shortDesc__",
  "default_locale": "en",
  "version": "1.0.0",
  "action": {
    "default_title": "Check Text with AI",
    "default_icon": {
      "16": "logo-16.png",
      "34": "logo-34.png",
      "48": "logo-48.png",
      "64": "logo-64.png",
      "96": "logo-96.png",
      "128": "logo-128.png"
    }
  },
  "permissions": [
    "sidePanel",
    "contextMenus",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "side_panel": {
    "default_path": "index.html"
  },
  "icons": {
    "16": "logo-16.png",
    "34": "logo-34.png",
    "48": "logo-48.png",
    "64": "logo-64.png",
    "96": "logo-96.png",
    "128": "logo-128.png"
  }
}