X QRCode

A powerfull chrome extension for qrcode encoding and decoding.

X QRCode là gì?

X QRCode là một tiện ích mở rộng Chrome được phát triển bởi nuintun, và tính năng chính của nó là "A powerfull chrome extension for qrcode encoding and decoding.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng X QRCode

Tải xuống các tệp mở rộng X QRCode dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        The extension can quickly convert the tab address to a QRCode and support converting the link and selected text in the page to a QRCode and parsing the QRCode image in the page.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên X QRCode X QRCode
ID afjgnjcplfimlceahcgancmlnmbkgmhf
URL Chính Thức https://chromewebstore.google.com/detail/x-qrcode/afjgnjcplfimlceahcgancmlnmbkgmhf
Mô tả A powerfull chrome extension for qrcode encoding and decoding.
Kích Thước Tệp 46.77 KB
Số Lần Cài Đặt 221
Phiên Bản Hiện Tại 0.3.3
Cập Nhật Lần Cuối 2022-01-21
Ngày Phát Hành 2019-05-28
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển nuintun
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nuintun/x-qrcode
URL Trang Trợ Giúp https://github.com/nuintun/x-qrcode
Ngôn Ngữ Được Hỗ Trợ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.3.3",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_appDesc__",
    "icons": {
        "16": "images\/qrcode-16.png",
        "32": "images\/qrcode-32.png",
        "48": "images\/qrcode-48.png",
        "128": "images\/qrcode-128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/qrcode-16.png",
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    },
    "homepage_url": "https:\/\/github.com\/nuintun\/x-qrcode",
    "permissions": [
        "activeTab",
        "contextMenus",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ]
}