The Quick QR Code - Multi-scene decoding tool

The Quick QR Code - Multi-scene decoding tool

Full-featured QR Code Extension(The Quick QR Code): QR code generation, camera decoding, screenshot decoding, picture decoding, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "version": "3.7.3",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "scripts/service-worker.js"
  },
  "options_page": "pages/options.html",
  "options_ui": {
    "page": "pages/options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "/scripts/jquery.min.js",
        "/scripts/jquery.Jcrop.js",
        "/scripts/content.js",
        "/scripts/vendors.js"
      ],
      "css": [
        "/styles/jquery.Jcrop.css",
        "/styles/content.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "__MSG_browserActionTitle__",
    "default_popup": "pages/popup_m.html"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "notifications",
    "unlimitedStorage",
    "storage",
    "alarms",
    "offscreen"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "offline_enabled": true,
  "minimum_chrome_version": "109"
}