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