URL to QR code converter

This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.

什么是URL to QR code converter?

URL to QR code converter是由https://sites.google.com/site/fujundu开发的Chrome扩展程序,该扩展的主要功能是“This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.”。

扩展截图

screenshot
screenshot

下载URL to QR code converter扩展crx文件

下载URL to QR code converter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension converts the url of the page you are viewing into a QR code, so that you can scan it with your phone to share the url.

It can also convert text into QR code.                    

扩展基本信息

名称 URL to QR code converter URL to QR code converter
ID cnbelooiikkmhknahgkckaikndlmlhfd
官方URL https://chromewebstore.google.com/detail/url-to-qr-code-converter/cnbelooiikkmhknahgkckaikndlmlhfd
简介 This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.
文件大小 46.83 KB
安装次数 4,354
当前版本 0.4
更新时间 2017-02-22
上架时间 2017-02-22
评分 4.00/5 共4次评分
开发者 https://sites.google.com/site/fujundu
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/fjdu/URL-to-QR-code
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL to QR code converter",
    "short_name": "URL to QR",
    "description": "This extension shows the QR code for the url of the current page or the text you input.  You can save the QR code as a png file.",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "qrcode.js",
                "jquery.qrcode.js",
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}