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ファイルをダウンロード

QR Code Generator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
        }
    ]
}