QR Code Reader
A chrome extension for reading QR code from webpage.
什么是QR Code Reader?
QR Code Reader是由QRExt开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension for reading QR code from webpage.”。
扩展截图
下载QR Code Reader扩展crx文件
下载QR Code Reader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
If there is a QR code on the webpage you are browsing, How do you know the content of that QR Code. Don't Worry, this extension comes to the rescue. QR Code Reader can show the content from the current webpage for you. Usage: Click extension icon or use `Command/Ctrl+Shift+S` shortcut to read QR code on current tab. Known Issues: Can't read multiple QR codes in one page. Unable to decode some QR code.
扩展基本信息
名称 | QR Code Reader |
ID | likadllkkidlligfcdhfnnbkjigdkmci |
官方URL | https://chromewebstore.google.com/detail/qr-code-reader/likadllkkidlligfcdhfnnbkjigdkmci |
简介 | A chrome extension for reading QR code from webpage. |
文件大小 | 435 KB |
安装次数 | 238,394 |
当前版本 | 2.0.1 |
更新时间 | 2023-07-05 |
上架时间 | 2018-11-24 |
评分 | 3.77/5 共57次评分 |
开发者 | QRExt |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://qrcd.org/ |
帮助页面URL | http://tiny.cc/appshelp |
隐私政策页面URL | https://qrcd.org/privacy.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "QR Code Reader", "description": "A chrome extension for reading QR code from webpage.", "version": "2.0.1", "manifest_version": 3, "background": { "service_worker": "service_worker.js", "type": "module" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "action": { "default_title": "QR Code Reader", "default_popup": "popup.html" }, "icons": { "16": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "permissions": [ "tabs", "activeTab", "unlimitedStorage", "storage" ] } |