Examine source code of Onyx Extension

Inspect and view changes in Onyx Extension 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": "Onyx Extension",
  "version": "1.0",
  "description": "Onyx integration for Chrome",
  "permissions": [
    "sidePanel",
    "storage",
    "activeTab",
    "tabs"
  ],
  "host_permissions": [
    "https://cloud.onyx.app/*"
  ],
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "public/icon16.png",
      "48": "public/icon48.png",
      "128": "public/icon128.png"
    }
  },
  "icons": {
    "16": "public/icon16.png",
    "48": "public/icon48.png",
    "128": "public/icon128.png"
  },
  "options_page": "src/pages/options.html",
  "chrome_url_overrides": {
    "newtab": "src/pages/onyx_home.html"
  },
  "commands": {
    "toggle-new-tab-override": {
      "suggested_key": {
        "default": "Ctrl+Shift+O",
        "mac": "Command+Shift+O"
      },
      "description": "Toggle Onyx New Tab Override"
    }
  },
  "side_panel": {
    "default_path": "src/pages/panel.html"
  }
}