QRtube

This extension generates QR codes based on content of the page

什麼是QRtube?

QRtube是由Leo Sun開發的Chrome擴展程式,該擴展的主要功能是“This extension generates QR codes based on content of the page”。

擴展截圖

screenshot
screenshot
screenshot

下載QRtube擴展crx文件

下載QRtube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Easy and fast tool to generate QR codes! No instructions needed!

1.0.1:
- fixed encoding issues on unicode characters

Features
Pop-up window:
- click on the popup icon for QR code for the current tab
- type anything into the text box and get QR code for your text
- left click on the QR code to download a copy

Right Click Menu:
- right click on anything (selection, links, images) on the page and get a floating QR code
- right click and save the QR code just like any other image on the page
- left click and the floating QR code will go away                    

擴展基本資訊

名稱 QRtube QRtube
ID phichmdafaefogijmmjpnljbofidimlm
官方網址 https://chromewebstore.google.com/detail/qrtube/phichmdafaefogijmmjpnljbofidimlm
簡介 This extension generates QR codes based on content of the page
檔案大小 102 KB
安裝次數 17
目前版本 1.0.1
更新時間 2014-07-24
上架時間 2014-07-24
評分 5.00/5 共 3 次評分
開發者 Leo Sun
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QRtube",
    "description": "This extension generates QR codes based on content of the page",
    "version": "1.0.1",
    "permissions": [
        "tabs",
        "contextMenus",
        "downloads",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "qrtube.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "qrcode.min.js",
                "qrtube.js",
                "jquery.qrcode.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}