QRtube
This extension generates QR codes based on content of the page
QRtube là gì?
QRtube là một tiện ích mở rộng Chrome được phát triển bởi Leo Sun, và tính năng chính của nó là "This extension generates QR codes based on content of the page".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng QRtube
Tải xuống các tệp mở rộng QRtube dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | QRtube |
ID | phichmdafaefogijmmjpnljbofidimlm |
URL Chính Thức | https://chromewebstore.google.com/detail/qrtube/phichmdafaefogijmmjpnljbofidimlm |
Mô tả | This extension generates QR codes based on content of the page |
Kích Thước Tệp | 102 KB |
Số Lần Cài Đặt | 17 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2014-07-24 |
Ngày Phát Hành | 2014-07-24 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Leo Sun |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } ] } |