QR Code Generator

This extension generates a QR code from links and selected text.

Vad är QR Code Generator?

QR Code Generator är en Chrome-tillägg utvecklad av Spencer Barnes-Israel, och dess huvudfunktion är "This extension generates a QR code from links and selected text.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner QR Code Generator-förlängningens CRX-fil

Ladda ner QR Code Generator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn QR Code Generator QR Code Generator
ID kjcljdffopfopchbndhhfkpjddjbhjpg
Officiell webbadress https://chrome.google.com/webstore/detail/qr-code-generator/kjcljdffopfopchbndhhfkpjddjbhjpg
Beskrivning This extension generates a QR code from links and selected text.
Filstorlek 59.1 KB
Antal Installationer 216
Aktuell Version 0.3
Senast Uppdaterad 2014-10-24
Publiceringsdatum 2014-10-24
Utvecklare Spencer Barnes-Israel
Betalningssätt free
Stödda Språk 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"
        }
    ]
}