qrcode decoder
Decode QRcode quickly
什么是qrcode decoder?
qrcode decoder是由Benjamin开发的Chrome扩展程序,该扩展的主要功能是“Decode QRcode quickly”。
扩展截图
下载qrcode decoder扩展crx文件
下载qrcode decoder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Decode QRcode; From image file, screenshot or right-click context menu.
v1.1 new feature - From screen shot.
v1.2 new feature - Copy content quickly.
v1.3 new feature - Replace alert with a custom popup component.
V1.4 fix bug - From image click bug. 扩展基本信息
| 名称 | |
| ID | hdpogjgalcimaijaamgkjpcbpidcanga |
| 官方URL | https://chromewebstore.google.com/detail/qrcode-decoder/hdpogjgalcimaijaamgkjpcbpidcanga |
| 简介 | Decode QRcode quickly |
| 文件大小 | 86.38 KB |
| 安装次数 | 77 |
| 当前版本 | 1.4 |
| 更新时间 | 2020-04-28 |
| 上架时间 | 2020-04-27 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | Benjamin |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "qrcode decoder",
"description": "Decode QRcode quickly",
"version": "1.4",
"manifest_version": 2,
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"96": "images\/icon96.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "images\/icon48.png",
"default_title": "Decode QRCode quickly",
"default_popup": "popup\/popup.html"
},
"permissions": [
"contextMenus",
"activeTab"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"script\/qrcode\/index.min.js",
"content-script.js"
],
"run_at": "document_end"
}
]
} | |