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
官方網址 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": [
                ""
            ]
        }
    ]
}