Auto Gen QR code

Auto Gen QR code

A tool that opens a website and generates a QR code for the current website.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_title__",
  "version": "1.0.2",
  "manifest_version": 3,
  "description": "__MSG_description__",
  "homepage_url": "https://github.com/Keystion/auto-gen-qr-code",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "default_locale": "zh_CN",
  "permissions": [
    "activeTab",
    "storage",
    "clipboardWrite"
  ],
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "offline_enabled": true,
  "action": {
    "default_icon": "images/icon128.png",
    "default_popup": "popup.html",
    "default_title": "Auto Gen QR code — 自动生成二维码"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}