QRtube
This extension generates QR codes based on content of the page
QRtubeคืออะไร?
QRtube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Leo Sun และคุณลักษณะหลักของมันคือ "This extension generates QR codes based on content of the page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย QRtube
ดาวน์โหลดไฟล์ส่วนขยาย 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | QRtube |
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:\/\/*\/*" ] } ] } |