Offline QR Code Generator/Editor

Offline QR Code Generator/Editor (URL and Text)

¿Qué es Offline QR Code Generator/Editor?

Offline QR Code Generator/Editor es una extensión de Chrome desarrollada por https://weibomiaopai.com/download-video-parser.php, y su función principal es "Offline QR Code Generator/Editor (URL and Text)".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Offline QR Code Generator/Editor

Descarga archivos de extensión Offline QR Code Generator/Editor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Offline QR Code Generator/Editor Offline QR Code Generator/Editor
ID kfhbhjigpkcbpmknfomdobahejfajado
URL Oficial https://chromewebstore.google.com/detail/offline-qr-code-generator/kfhbhjigpkcbpmknfomdobahejfajado
Descripción Offline QR Code Generator/Editor (URL and Text)
Tamaño del Archivo 60.11 KB
Cantidad de Instalaciones 3,315
Versión Actual 1.3.3
Última Actualización 2021-12-23
Fecha de Publicación 2019-03-18
Calificación 4.06/5 Total de 17 Calificaciones
Desarrollador https://weibomiaopai.com/download-video-parser.php
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://helloacm.com/tools/qrcode-reader/
URL de la Página de Ayuda https://helloacm.com/tools/
URL de la Página de Política de Privacidad https://helloacm.com/disclaimer
Idiomas Soportados 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"
        }
    ]
}