二维码

快速生成网址二维码,新增关灯、CSDN扩展css
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "二维码",
  "description": "快速生成网址二维码,新增关灯、CSDN扩展css",
  "manifest_version": 3,
  "version": "0.0.0.4",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "action": {
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "source/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "source/inject/import.js",
        "source/inject/lamp.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "css": [],
      "run_at": "document_start"
    },
    {
      "css": [
        "source/css/cover.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "source/css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "<all_urls>"
    ]
  },
  "default_locale": "zh_CN",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}