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:\/\/*\/*"
]
}
]
} | |