Offline QR Code Generator/Editor

Offline QR Code Generator/Editor (URL and Text)

Wat is Offline QR Code Generator/Editor?

Offline QR Code Generator/Editor is een Chrome-extensie ontwikkeld door https://weibomiaopai.com/download-video-parser.php, en de belangrijkste functie is "Offline QR Code Generator/Editor (URL and Text)".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Offline QR Code Generator/Editor

Download Offline QR Code Generator/Editor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Offline QR Code Generator/Editor Offline QR Code Generator/Editor
ID kfhbhjigpkcbpmknfomdobahejfajado
Officiële URL https://chromewebstore.google.com/detail/offline-qr-code-generator/kfhbhjigpkcbpmknfomdobahejfajado
Beschrijving Offline QR Code Generator/Editor (URL and Text)
Bestandsgrootte 60.11 KB
Aantal Installaties 3,315
Huidige Versie 1.3.3
Laatst Bijgewerkt 2021-12-23
Publicatiedatum 2019-03-18
Beoordeling 4.06/5 Totaal 17 Beoordelingen
Ontwikkelaar https://weibomiaopai.com/download-video-parser.php
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://helloacm.com/tools/qrcode-reader/
Help Pagina-URL https://helloacm.com/tools/
URL van de Privacybeleid Pagina https://helloacm.com/disclaimer
Ondersteunde Talen 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"
        }
    ]
}