Examine source code of Home Shortcut for Chromebook™

Inspect and view changes in Home Shortcut for Chromebook™ 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",
  "name": "Home Shortcut for Chromebook™",
  "version": "1.0.8",
  "manifest_version": 3,
  "commands": {
    "goHome": {
      "suggested_key": {
        "default": "Alt+H"
      },
      "description": "Go to Home page"
    }
  },
  "description": "Adds a keyboard shortcut for the Home button.",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options.html"
  }
}