X QRCode

A powerfull chrome extension for qrcode encoding and decoding.

Co to jest X QRCode?

X QRCode to rozszerzenie Chrome opracowane przez nuintun, a jego główną funkcją jest „A powerfull chrome extension for qrcode encoding and decoding.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia X QRCode

Pobierz pliki rozszerzeń X QRCode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa X QRCode X QRCode
ID afjgnjcplfimlceahcgancmlnmbkgmhf
Oficjalny URL https://chromewebstore.google.com/detail/x-qrcode/afjgnjcplfimlceahcgancmlnmbkgmhf
Opis A powerfull chrome extension for qrcode encoding and decoding.
Rozmiar pliku 46.77 KB
Liczba instalacji 221
Aktualna Wersja 0.3.3
Ostatnia Aktualizacja 2022-01-21
Data Publikacji 2019-05-28
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper nuintun
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/nuintun/x-qrcode
Adres URL Strony Pomocy https://github.com/nuintun/x-qrcode
Obsługiwane Języki 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"
        }
    ]
}