QR Link Transmitter

QR code generator for any links (including history). Transform the links you see on a webpage to QR code

QR Link Transmitter란 무엇입니까?

QR Link Transmitter은(는) alim.akbashev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "QR code generator for any links (including history). Transform the links you see on a webpage to QR code"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

QR Link Transmitter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        For example, you've just bought cool mp3 and you want to set it as a ringtone on your phone. Another use case, you've found interesting article and you want to read it on a tablet over lunch. It's pretty easy - transform the link to QR code and scan it with your smartphone/tablet!

How to use it #1
1. Right-click on the link
2. Click "Get QR code for the link"
3. Scan the QR code with your smartphone/tablet

How to use it #2
1. click on extension button on a toolbar
2. point your mouse pointer on the download/article link
3. scan the QR code appeared with your smartphone/tablet

The extension does not require Internet connection. Even without connection you can generate QR code for any links from History page or from any opened tabs.                    

확장 프로그램 기본 정보

이름 QR Link Transmitter QR Link Transmitter
ID piolkmmmcdkapdlnejihmajfpjnghacd
공식 URL https://chromewebstore.google.com/detail/qr-link-transmitter/piolkmmmcdkapdlnejihmajfpjnghacd
설명 QR code generator for any links (including history). Transform the links you see on a webpage to QR code
파일 크기 60.33 KB
설치 횟수 466
현재 버전 0.2.3
최근 업데이트 2016-06-30
출시 날짜 2016-06-30
평점 5.00/5 총 8 개의 평점
개발자 alim.akbashev
결제 유형 free
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.2.3",
    "browser_action": {
        "default_icon": "icon-38.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "js": [
                "jquery.min.js",
                "main.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "qrcode.js",
            "context.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "notifications"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}