Examine source code of Micode WebPhone

Inspect and view changes in Micode WebPhone 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",
  "version": "1.0.11",
  "short_name": "Micode",
  "name": "Micode WebPhone",
  "manifest_version": 3,
  "description": "Convierte cualquier número en web en un enlace clicable. Con Teléfono Web, haz clic y realiza llamadas de forma rápida y sencilla.",
  "default_locale": "es",
  "action": {
    "default_icon": "android-chrome-48x48.png",
    "default_title": "Micode",
    "default_popup": "action.html"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "static/js/background.js",
    "matches": [
      "http://*/*",
      "https://*/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "static/js/content.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/js/inpage.js",
        "js-lib/dynamics-web-api.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "notifications",
    "videoCapture",
    "audioCapture",
    "contextMenus",
    "storage",
    "https://*/*",
    "http://*/*",
    "wss://*/*",
    "ws://*/*"
  ],
  "icons": {
    "48": "android-chrome-48x48.png",
    "192": "android-chrome-192x192.png"
  },
  "host_permissions": [
    "file://*/*",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-ancestors 'none';"
  },
  "minimum_chrome_version": "88"
}