URL to QR code converter

This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.

ما هو URL to QR code converter؟

URL to QR code converter هو إضافة Chrome تم تطويرها بواسطة https://sites.google.com/site/fujundu، والميزة الرئيسية لها هي "This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة URL to QR code converter

قم بتنزيل ملفات الامتداد URL to QR code converter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension converts the url of the page you are viewing into a QR code, so that you can scan it with your phone to share the url.

It can also convert text into QR code.                    

معلومات أساسية عن التمديد

الاسم URL to QR code converter URL to QR code converter
ID cnbelooiikkmhknahgkckaikndlmlhfd
عنوان URL الرسمي https://chromewebstore.google.com/detail/url-to-qr-code-converter/cnbelooiikkmhknahgkckaikndlmlhfd
الوصف This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.
حجم الملف 46.83 KB
عدد التثبيتات 4,354
النسخة الحالية 0.4
آخر تحديث 2017-02-22
تاريخ النشر 2017-02-22
تقييم 4.00/5 مجموع تقييمات 4
المطور https://sites.google.com/site/fujundu
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/fjdu/URL-to-QR-code
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL to QR code converter",
    "short_name": "URL to QR",
    "description": "This extension shows the QR code for the url of the current page or the text you input.  You can save the QR code as a png file.",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "qrcode.js",
                "jquery.qrcode.js",
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}