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 |
Eメール | [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" ] } |