QR Link Transmitter

QR code generator for any links (including history). Transform the links you see on a webpage to QR code

QR Link Transmitter क्या है?

QR Link Transmitter alim.akbashev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "QR code generator for any links (including history). Transform the links you see on a webpage to QR code"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में QR Link Transmitter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        For example, you've just bought cool mp3 and you want to set it as a ringtone on your phone. Another use case, you've found interesting article and you want to read it on a tablet over lunch. It's pretty easy - transform the link to QR code and scan it with your smartphone/tablet!

How to use it #1
1. Right-click on the link
2. Click "Get QR code for the link"
3. Scan the QR code with your smartphone/tablet

How to use it #2
1. click on extension button on a toolbar
2. point your mouse pointer on the download/article link
3. scan the QR code appeared with your smartphone/tablet

The extension does not require Internet connection. Even without connection you can generate QR code for any links from History page or from any opened tabs.                    

एक्सटेंशन की मूल जानकारी

नाम QR Link Transmitter QR Link Transmitter
ID piolkmmmcdkapdlnejihmajfpjnghacd
आधिकारिक URL https://chromewebstore.google.com/detail/qr-link-transmitter/piolkmmmcdkapdlnejihmajfpjnghacd
विवरण QR code generator for any links (including history). Transform the links you see on a webpage to QR code
फ़ाइल का आकार 60.33 KB
स्थापना संख्या 466
वर्तमान संस्करण 0.2.3
अंतिम अपडेट 2016-06-30
प्रकाशन तिथि 2016-06-30
रेटिंग 5.00/5 कुल 8 रेटिंग्स
डेवलपर alim.akbashev
भुगतान के प्रकार free
समर्थित भाषाएँ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.2.3",
    "browser_action": {
        "default_icon": "icon-38.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "js": [
                "jquery.min.js",
                "main.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "qrcode.js",
            "context.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "notifications"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}