Offline QR Code Generator/Editor

Offline QR Code Generator/Editor (URL and Text)

Offline QR Code Generator/Editor là gì?

Offline QR Code Generator/Editor là một tiện ích mở rộng Chrome được phát triển bởi https://weibomiaopai.com/download-video-parser.php, và tính năng chính của nó là "Offline QR Code Generator/Editor (URL and Text)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Offline QR Code Generator/Editor

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

                        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                    

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

Tên Offline QR Code Generator/Editor Offline QR Code Generator/Editor
ID kfhbhjigpkcbpmknfomdobahejfajado
URL Chính Thức https://chromewebstore.google.com/detail/offline-qr-code-generator/kfhbhjigpkcbpmknfomdobahejfajado
Mô tả Offline QR Code Generator/Editor (URL and Text)
Kích Thước Tệp 60.11 KB
Số Lần Cài Đặt 3,315
Phiên Bản Hiện Tại 1.3.3
Cập Nhật Lần Cuối 2021-12-23
Ngày Phát Hành 2019-03-18
Đánh Giá 4.06/5 Tổng số 17 Đánh Giá
Nhà Phát Triển https://weibomiaopai.com/download-video-parser.php
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://helloacm.com/tools/qrcode-reader/
URL Trang Trợ Giúp https://helloacm.com/tools/
URL Trang Chính Sách Bảo Mật https://helloacm.com/disclaimer
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}