Url2QRcode

Convert the URL to QRcode.

Url2QRcodeคืออะไร?

Url2QRcode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://getcrx.cn และคุณลักษณะหลักของมันคือ "Convert the URL to QRcode."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Url2QRcode

ดาวน์โหลดไฟล์ส่วนขยาย Url2QRcode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Just help you Convert the URL to QRcode.
Just Do It!

- one key to convert the URL of current TAB
- convert any text in the option page(right click the extension icon, and select `option`)
- offline convert supported
- v2.2.0: customize qrcode image size( range from 10px to 570px)
- v2.3.0: add `QRcode to URL scaner` context menu(should enable `chrome://flags/#enable-experimental-web-platform-features` manualy)
- v2.4.0 add history record
- v2.5.0 support QRcode detect in contextmenu on Windows                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Url2QRcode Url2QRcode
ID acedjabgpolnckckknijpejicghpfbnj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/url2qrcode/acedjabgpolnckckknijpejicghpfbnj
คำอธิบาย Convert the URL to QRcode.
ขนาดไฟล์ 369 KB
จำนวนการติดตั้ง 2,000
เวอร์ชันปัจจุบัน 2.5.1
อัปเดตครั้งล่าสุด 2023-02-18
วันที่เผยแพร่ 2019-03-28
คะแนน 4.50/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา https://getcrx.cn
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://github.com/g8up/youDaoDict/wiki/privacy
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.5.1",
    "background": {
        "scripts": [
            "barcode-detector.umd.js",
            ".\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                ".\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "assets\/g8up.cn.png",
        "default_popup": "assets\/popup.html"
    },
    "options_page": "assets\/option.html",
    "icons": {
        "128": "assets\/g8up-cn.png"
    },
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "offline_enabled": true,
    "permissions": [
        "tabs",
        "contextMenus",
        "storage"
    ]
}