Zxing QrCode

Zxing QrCode

- A chrome extension for reading and generate QR code from webpage. - Porting from an open source zxing…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zxing QrCode",
  "version": "1.4",
  "manifest_version": 3,
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "service_worker": "app/app.nocache.js"
  },
  "content_scripts": [
    {
      "js": [
        "app/app.nocache.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "downloads",
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_title": "Zxing QrCode",
    "default_icon": "32.png",
    "default_popup": "index.html"
  }
}