QR Code Tools
Generate a QR Code for the current page or your text
ما هو QR Code Tools؟
QR Code Tools هو إضافة Chrome تم تطويرها بواسطة kimown، والميزة الرئيسية لها هي "Generate a QR Code for the current page or your text".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة QR Code Tools
قم بتنزيل ملفات الامتداد QR Code Tools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Generate a QR Code for the current page or your text.
معلومات أساسية عن التمديد
الاسم | |
ID | ocbhppgblkpojkpebamblimobggeaobi |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/qr-code-tools/ocbhppgblkpojkpebamblimobggeaobi |
الوصف | Generate a QR Code for the current page or your text |
حجم الملف | 25.42 KB |
عدد التثبيتات | 32 |
النسخة الحالية | 1.0 |
آخر تحديث | 2016-07-23 |
تاريخ النشر | 2016-07-23 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | kimown |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "QR Code Tools", "description": "Generate a QR Code for the current page or your text", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "popup.js" ] } ], "permissions": [ "activeTab", "tabs" ] } |