QR-Code
Show a QR-Code for the current URL (without relying on some third-party API).
什么是QR-Code?
QR-Code是由felix.kaiser开发的Chrome扩展程序,该扩展的主要功能是“Show a QR-Code for the current URL (without relying on some third-party API).”。
扩展截图
下载QR-Code扩展crx文件
下载QR-Code扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | leicjbimaiecjfljbeikdailcmaadlml |
| 官方URL | https://chromewebstore.google.com/detail/qr-code/leicjbimaiecjfljbeikdailcmaadlml |
| 简介 | Show a QR-Code for the current URL (without relying on some third-party API). |
| 文件大小 | 13.5 KB |
| 安装次数 | 799 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2017-11-21 |
| 上架时间 | 2017-11-21 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | felix.kaiser |
| 付费类型 | free |
| 扩展官网 | https://github.com/fxkr/chrome-qrcode-extension |
| 支持的语言 | 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"
}
} | |