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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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:\/\/*\/*" ] } ] } |