Offline QR Code Generator/Editor

Offline QR Code Generator/Editor (URL and Text)

Offline QR Code Generator/Editor란 무엇입니까?

Offline QR Code Generator/Editor은(는) https://weibomiaopai.com/download-video-parser.php에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Offline QR Code Generator/Editor (URL and Text)"입니다.

확장 프로그램 스크린샷

screenshot

Offline QR Code Generator/Editor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Offline QR Code Generator/Editor Offline QR Code Generator/Editor
ID kfhbhjigpkcbpmknfomdobahejfajado
공식 URL https://chromewebstore.google.com/detail/offline-qr-code-generator/kfhbhjigpkcbpmknfomdobahejfajado
설명 Offline QR Code Generator/Editor (URL and Text)
파일 크기 60.11 KB
설치 횟수 3,315
현재 버전 1.3.3
최근 업데이트 2021-12-23
출시 날짜 2019-03-18
평점 4.06/5 총 17 개의 평점
개발자 https://weibomiaopai.com/download-video-parser.php
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://helloacm.com/tools/qrcode-reader/
도움말 페이지 URL https://helloacm.com/tools/
개인정보 보호 정책 페이지 URL https://helloacm.com/disclaimer
지원되는 언어 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"
        }
    ]
}