QR Code
Generate and Scan QR Code.
QR Codeคืออะไร?
QR Code เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://guokai.dev และคุณลักษณะหลักของมันคือ "Generate and Scan QR Code."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย QR Code
ดาวน์โหลดไฟล์ส่วนขยาย QR Code ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension help you generate QR code for links and text, while supporting scan QR code through context menus, local files and webcam. All functions execute locally on your browser, no data send to server. 1. When you click the extension icon, it shows you QR code for current page URL. And you can change input and download QR code. There are two buttons at the bottom for custom generating and scanning QR code in a new page. For generating QR code, you can: • Input any URL or text • Adjust margin • Adjust size • Adjust error correction • Download as png or svg file. • Copy to clipboard. For scanning QR code, it supports: • Scan an image by it's URL • Select or drag and drop a local image file • Scan with camera 2. Through context menus on web page, you can: • Scan QR Code From Images • Generate QR Code for Page Link • Generate QR Code for Selected Text • Generate QR Code for Link Address • Generate QR Code for Media(image, audio and video) Address In addition, it also supports scanning other barcode types on the latest macOS or Chrome OS. For example, on macOS, it supports the recognition of these types of barcodes: "aztec", "code_128", "code_39", "code_93", "data_matrix", "ean_13", "ean_8", "itf", "pdf417", "qr_code" and "upc_e ".
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | QR Code |
ID | cbimgpnbgalffiohilfglgkkhpegpjlo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/qr-code/cbimgpnbgalffiohilfglgkkhpegpjlo |
คำอธิบาย | Generate and Scan QR Code. |
ขนาดไฟล์ | 165 KB |
จำนวนการติดตั้ง | 90,562 |
เวอร์ชันปัจจุบัน | 1.3.0 |
อัปเดตครั้งล่าสุด | 2023-08-25 |
วันที่เผยแพร่ | 2020-04-20 |
คะแนน | 4.69/5 รวมทั้งหมด 36 คะแนน |
ผู้พัฒนา | https://guokai.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://guokai.dev/privacy |
ภาษาที่รองรับ | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.3.0", "author": "Guokai Han", "manifest_version": 3, "description": "__MSG_extDescription__", "default_locale": "en", "offline_enabled": true, "minimum_chrome_version": "102", "permissions": [ "activeTab", "scripting", "storage", "contextMenus" ], "optional_host_permissions": [ "https:\/\/*\/", "http:\/\/*\/" ], "icons": { "16": "icon\/16.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "action": { "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "commands": { "open-generator": { "description": "__MSG_commandGenerator__" }, "open-scanner": { "description": "__MSG_commandScanner__" } } } |