Offline QR Code Generator/Editor

Offline QR Code Generator/Editor (URL and Text)

Co to jest Offline QR Code Generator/Editor?

Offline QR Code Generator/Editor to rozszerzenie Chrome opracowane przez https://weibomiaopai.com/download-video-parser.php, a jego główną funkcją jest „Offline QR Code Generator/Editor (URL and Text)”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Offline QR Code Generator/Editor

Pobierz pliki rozszerzeń Offline QR Code Generator/Editor 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

                        Offline QR Code Generator/Editor

Source Code:
 	https://github.com/DoctorLai/simple-qr-code

Features:
 	**Absolutely Offline and Fast**
 	**Context Menu Support (Any Selected Text to QR)**
 	**Absolutely simple, powerful and Ads-Free!**
 	**Life-time support, Free For Ever**
 	**Easy to use***
 	**Allow QR Modification (Click the Image)**
 	**No Author links or other shits**

This Simple Chrome Extension (Clean UI with no Author or other links) allows you to get the QR image for the current Tab URL. You click the extension icon and then you will get the QR image. Simple as that, no deep shit.

You can right click to copy, open in new tab or save the image. This plugin requires No Internet Connection (via qrcode.min.js)

You can also select any text and click the 'Get QR' in the context menu. If no selection is found, the current tab URL will be converted to QR. The QR image will be shown in the same page and again, you can click the QR image to modify the text.

If you don't like context menu, you can hide it in the option page.

From version 0.6, the QR will NOT be shown using Bootstrap Modal because it may conflict with the page and slow down the browser.

Just remember, less is more. Please rate it. Suggestions, Feedback and ratings are much appreciated. 

You can also click the QR image to modify the text.

If you like this plugin, could you buy me a coffee? :)
 	https://www.paypal.me/doctorlai/5
 	bitcoin:1J88t5UAgKBHhMgzkyH9bpY5mPdCYAe5XQ

Update History
        22-Dec-2021 1.3.3 Manifest V3 - Remove Context
	18-Mar-2019 1.3.2 Remove Bootstrap, Add Quiet Zones
	10-Sep-2017 1.2 Add Version
	28-Jan-2017 1.1 Add Locale
	17-Nov-2016 1.0 Fix Multiple Context Menu
	16-Nov-2016 0.9 Add Options Page - Allow Hiding the Context Menu
	16-Nov-2016 0.8 Add Context Menu - Get QR of Current URL
	16-Nov-2016 0.7 Allow Modification when you click the QR image (in page)
	16-Nov-2016 0.6 Remove Modal because of Conflicts
	15-Nov-2016 0.5 Add Context Menu (Any Selected Text to QR)
	13-Nov-2016 0.4 Update Text after QR is modified
	13-Nov-2016 0.3 Offline using qrcode.min.js
	13-Nov-2016 0.2 Code Cleanup
	13-Nov-2016 0.1 Init Release                    

Podstawowe informacje o rozszerzeniu

Nazwa Offline QR Code Generator/Editor Offline QR Code Generator/Editor
ID kfhbhjigpkcbpmknfomdobahejfajado
Oficjalny URL https://chromewebstore.google.com/detail/offline-qr-code-generator/kfhbhjigpkcbpmknfomdobahejfajado
Opis Offline QR Code Generator/Editor (URL and Text)
Rozmiar pliku 60.11 KB
Liczba instalacji 3,315
Aktualna Wersja 1.3.3
Ostatnia Aktualizacja 2021-12-23
Data Publikacji 2019-03-18
Ocena 4.06/5 Łącznie 17 Oceny
Deweloper https://weibomiaopai.com/download-video-parser.php
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://helloacm.com/tools/qrcode-reader/
Adres URL Strony Pomocy https://helloacm.com/tools/
Adres URL Strony Polityki Prywatności https://helloacm.com/disclaimer
Obsługiwane Języki en,en-GB,en-US,zh-CN,zh-TW
manifest.json
{
    "manifest_version": 3,
    "name": "Offline QR Code Generator\/Editor",
    "default_locale": "en",
    "short_name": "QR Code Generator",
    "version": "1.3.3",
    "action": {
        "default_icon": "icon.png",
        "default_title": "Offline QR Code Generator\/Editor (URL and Text)",
        "default_popup": "main.html"
    },
    "offline_enabled": true,
    "author": "justyy",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Offline QR Code Generator\/Editor (URL and Text)",
    "web_accessible_resources": [
        {
            "resources": [
                "js\/*",
                "images\/*"
            ],
            "extension_ids": [
                "kfhbhjigpkcbpmknfomdobahejfajado"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "background": {
        "service_worker": "js\/context.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.js",
                "js\/qrcode.min.js",
                "js\/toutf8.js",
                "js\/contentscript.js"
            ],
            "run_at": "document_start"
        }
    ]
}