QR Code Reader
A chrome extension for reading QR code from webpage.
QR Code Reader क्या है?
QR Code Reader QRExt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension for reading QR code from webpage."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में QR Code Reader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |