QR Code
A light weight QR Code
What is QR Code?
QR Code is a Chrome extension developed by Vimo, and its main feature is "A light weight QR Code".
Extension Screenshots
Download QR Code Extension CRX File
Download QR Code extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
To make the url or input some string into QR code, And you can download it. It's simple and easy.
Extension Basic Information
Name | QR Code |
ID | pbaiffcponpeabjpjambkgpplklgjkcj |
Official URL | https://chromewebstore.google.com/detail/qr-code/pbaiffcponpeabjpjambkgpplklgjkcj |
Description | A light weight QR Code |
File Size | 11.49 KB |
Installation Count | 39 |
Current Version | 1.2.2 |
Last Updated | 2019-06-20 |
Publish Date | 2019-06-19 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Vimo |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "QR Code", "version": "1.2.2", "manifest_version": 2, "description": "A light weight QR Code", "icons": { "48": "qrcode.png" }, "browser_action": { "default_icon": { "48": "qrcode.png" }, "default_popup": "popup.html", "default_title": "Create a QR Code for url" }, "content_scripts": [ { "all_frames": true, "match_about_blank": true, "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "qrCode.js" ] } ], "permissions": [ "tabs" ] } |