QR Code Generator

This extension generates a QR code from links and selected text.

QR Code Generator란 무엇입니까?

QR Code Generator은(는) Spencer Barnes-Israel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension generates a QR code from links and selected text."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension generates a QR code from links and selected text, which you can then scan with your smart phone. This provides you with a quick way to get links and text to your phone.

Translated into Brazilian Portuguese and Spanish via Google Translate. If you'd like to volunteer to translate this extension into your native language, please contact me. Thanks!

The code is on GitHub -> https://github.com/sbarnesisrael/qr-generator-chrext                    

확장 프로그램 기본 정보

이름 QR Code Generator QR Code Generator
ID kjcljdffopfopchbndhhfkpjddjbhjpg
공식 URL https://chrome.google.com/webstore/detail/qr-code-generator/kjcljdffopfopchbndhhfkpjddjbhjpg
설명 This extension generates a QR code from links and selected text.
파일 크기 59.1 KB
설치 횟수 216
현재 버전 0.3
최근 업데이트 2014-10-24
출시 날짜 2014-10-24
개발자 Spencer Barnes-Israel
결제 유형 free
지원되는 언어 en,es,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "version": "0.3",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "page_action": {
        "default_icon": "imgs\/qrgenerator-16.png",
        "default_title": "QR Code generator",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "imgs\/qrgenerator-16.png",
        "48": "imgs\/qrgenerator-48.png",
        "128": "imgs\/qrgenerator-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/popup.js"
            ],
            "run_at": "document_end"
        }
    ]
}