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"
}
]
} | |