好用的二维(条形)码扫描器

好用的二维(条形)码扫描器

东半球最好用的二维码(条形码)识别器! 主要有以下两个功能: 1、识别当前页面所有的二维码(条形码),并识别结果,展示到页面上。 2、你可以在特定图片上右键识别当前二维码(条形码)。

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "好用的二维(条形)码扫描器",
  "manifest_version": 2,
  "version": "1.0",
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "icon.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; script-src-elem 'self'",
  "permissions": [
    "contextMenus",
    "activeTab",
    "background",
    "https://*/*",
    "http://*/*"
  ],
  "commands": {},
  "background": {
    "scripts": [
      "background/tensorflow.js",
      "background/js-qr.js",
      "background/quagga.min.js",
      "background/inject-code.js",
      "background/utils.js",
      "background.js"
    ]
  }
}