QR Code Generator

This extension generates a QR code from links and selected text.

QR Code Generator là gì?

QR Code Generator là một tiện ích mở rộng Chrome được phát triển bởi Spencer Barnes-Israel, và tính năng chính của nó là "This extension generates a QR code from links and selected text.".

Ả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 QR Code Generator

Tải xuống các tệp mở rộng QR Code Generator 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

                        This extension generates a QR code from links and selected text, which you can then scan with your smart phone. This provides you with a quick way to get links and text to your phone.

Translated into Brazilian Portuguese and Spanish via Google Translate. If you'd like to volunteer to translate this extension into your native language, please contact me. Thanks!

The code is on GitHub -> https://github.com/sbarnesisrael/qr-generator-chrext                    

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

Tên QR Code Generator QR Code Generator
ID kjcljdffopfopchbndhhfkpjddjbhjpg
URL Chính Thức https://chrome.google.com/webstore/detail/qr-code-generator/kjcljdffopfopchbndhhfkpjddjbhjpg
Mô tả This extension generates a QR code from links and selected text.
Kích Thước Tệp 59.1 KB
Số Lần Cài Đặt 216
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2014-10-24
Ngày Phát Hành 2014-10-24
Nhà Phát Triển Spencer Barnes-Israel
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,es,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "version": "0.3",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "page_action": {
        "default_icon": "imgs\/qrgenerator-16.png",
        "default_title": "QR Code generator",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "imgs\/qrgenerator-16.png",
        "48": "imgs\/qrgenerator-48.png",
        "128": "imgs\/qrgenerator-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/popup.js"
            ],
            "run_at": "document_end"
        }
    ]
}