Examine source code of Aidma Phone

Inspect and view changes in Aidma Phone 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": "Aidma Phone",
  "version": "1.19",
  "description": "SIP電話の着信を行うための拡張機能です。",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "action": {
    "default_icon": "images/icon-16.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/lib/jquery-3.6.3.min.js",
        "/lib/jquery-ui.min.js",
        "/lib/jssip.min.js",
        "/lib/socket.io.min.js",
        "/content/config.js",
        "/content/user-info.js",
        "/content/sip-phone.js",
        "/content/telephone-call.js",
        "/content/hold.js",
        "/content/content.js"
      ],
      "css": [
        "/css/aidma-phone.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "sound/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "alarms",
    "tabs",
    "storage",
    "windows"
  ]
}