Examine source code of ImgCap

Inspect and view changes in ImgCap 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
{
  "manifest_version": 3,
  "name": "ImgCap",
  "version": "1.3.5",
  "description": "通过AI识别网页中的图片,生成描述性的的替代文本,方便视障者访问有图的网页。在微信公众号文章编辑页中可以为文章里的图片增加描述性的替代文本。",
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html",
    "default_title": "ImgCap"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "html2canvas.min.js",
        "cms.js"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}