Examine source code of Aira Chrome Extension

Inspect and view changes in Aira Chrome 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",
  "name": "Aira Chrome Extension",
  "version": "1.2.1",
  "manifest_version": 3,
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "action": {
    "default_popup": "src/popup.html"
  },
  "background": {
    "service_worker": "src/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "src/content.js"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "activeTab",
    "tabs",
    "scripting",
    "https://dev.helloaira.io/",
    "https://app.helloaira.io/"
  ],
  "host_permissions": [
    "https://dev.helloaira.io/",
    "https://app.helloaira.io/",
    "https://api.helloaira.io/*",
    "https://api-dev.helloaira.io/*"
  ],
  "options_ui": {
    "page": "src/options.html",
    "open_in_tab": true
  }
}