QRtube
This extension generates QR codes based on content of the page
QRtube क्या है?
QRtube Leo Sun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension generates QR codes based on content of the page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में QRtube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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:\/\/*\/*" ] } ] } |