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 |
| 官方網址 | 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"
}
]
} | |