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 |
官方網址 | 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" ] } |