Url2QRCode

With this extension you can generate a QR Code relative to the active URL.

Url2QRCode란 무엇입니까?

Url2QRCode은(는) Gabriele Callimaci에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "With this extension you can generate a QR Code relative to the active URL."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Url2QRCode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Have you ever started to read an article on your computer and then you want to continue on the phone or tablet?!?! To me, often, and to do that, every time I have to enter by hand on the phone, the link of the web page, with the possibility of making a mistake and a great loss of time !!
Well, now, thanks to this extension, you can create on the fly a QR Code alleging the URL of the web page open, and through any QR reader installed on your phone, you can restore it on your phone's browser: simple, no ?!?!                    

확장 프로그램 기본 정보

이름 Url2QRCode Url2QRCode
ID gnobbgncabdnemdppgojlhblpohickok
공식 URL https://chromewebstore.google.com/detail/url2qrcode/gnobbgncabdnemdppgojlhblpohickok
설명 With this extension you can generate a QR Code relative to the active URL.
파일 크기 45.66 KB
설치 횟수 38
현재 버전 1.0
최근 업데이트 2015-07-15
출시 날짜 2015-07-15
개발자 Gabriele Callimaci
이메일 [email protected]
결제 유형 free
지원되는 언어 en,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extname__",
    "short_name": "__MSG_extname__",
    "description": "__MSG_extdescr__",
    "version": "1.0",
    "default_locale": "it",
    "icons": {
        "16": "QRCode_16.png",
        "36": "QRCode_36.png",
        "48": "QRCode_48.png",
        "128": "QRCode_128.png"
    },
    "author": "Gabriele Callimaci ([email protected])",
    "browser_action": {
        "default_icon": "QRCode_16.png",
        "default_popup": "getQRCode.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-2.1.4.min.js",
                "jquery.qrcode-0.12.0.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "activeTab"
    ]
}