QR-Code
Show a QR-Code for the current URL (without relying on some third-party API).
What is QR-Code?
QR-Code is a Chrome extension developed by felix.kaiser, and its main feature is "Show a QR-Code for the current URL (without relying on some third-party API).".
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
Shows a QR-Code for the current URL, or any other text. It uses Kazuhiko Arases JavaScript library (http://www.d-project.com/) to draw the QR codes instead of relying on some third-party web API (like all of the other extensions I looked at.). It's free and open source: https://github.com/fxkr/chrome-qrcode-extension
Extension Basic Information
Name | QR-Code |
ID | leicjbimaiecjfljbeikdailcmaadlml |
Official URL | https://chromewebstore.google.com/detail/qr-code/leicjbimaiecjfljbeikdailcmaadlml |
Description | Show a QR-Code for the current URL (without relying on some third-party API). |
File Size | 13.5 KB |
Installation Count | 799 |
Current Version | 1.0.0 |
Last Updated | 2017-11-21 |
Publish Date | 2017-11-21 |
Rating | 5.00/5 Total 1 Ratings |
Developer | felix.kaiser |
Payment Type | free |
Extension Website | https://github.com/fxkr/chrome-qrcode-extension |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "QR-Code", "description": "Show a QR-Code for the current URL (without relying on some third-party API).", "version": "1.0.0", "homepage_url": "https:\/\/github.com\/fxkr\/chrome-qrcode-extension", "icons": { "16": "icon-16x16.png", "48": "icon-48x48.png", "128": "icon-128x128.png" }, "permissions": [ "tabs" ], "offline_enabled": true, "browser_action": { "default_icon": "icon-16x16.png", "default_popup": "popup.html" } } |