QRtube
This extension generates QR codes based on content of the page
什么是QRtube?
QRtube是由Leo Sun开发的Chrome扩展程序,该扩展的主要功能是“This extension generates QR codes based on content of the page”。
扩展截图
下载QRtube扩展crx文件
下载QRtube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Easy and fast tool to generate QR codes! No instructions needed!
1.0.1:
- fixed encoding issues on unicode characters
Features
Pop-up window:
- click on the popup icon for QR code for the current tab
- type anything into the text box and get QR code for your text
- left click on the QR code to download a copy
Right Click Menu:
- right click on anything (selection, links, images) on the page and get a floating QR code
- right click and save the QR code just like any other image on the page
- left click and the floating QR code will go away 扩展基本信息
| 名称 | |
| ID | phichmdafaefogijmmjpnljbofidimlm |
| 官方URL | https://chromewebstore.google.com/detail/qrtube/phichmdafaefogijmmjpnljbofidimlm |
| 简介 | This extension generates QR codes based on content of the page |
| 文件大小 | 102 KB |
| 安装次数 | 17 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2014-07-24 |
| 上架时间 | 2014-07-24 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | Leo Sun |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "QRtube",
"description": "This extension generates QR codes based on content of the page",
"version": "1.0.1",
"permissions": [
"tabs",
"contextMenus",
"downloads",
"http:\/\/*\/",
"https:\/\/*\/"
],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "qrtube.html"
},
"content_scripts": [
{
"js": [
"jquery.min.js",
"qrcode.min.js",
"qrtube.js",
"jquery.qrcode.min.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
]
} | |