URC - URL Scanner

To experience a better way to sending links to your associates, this extension comes in handy. This is easy, simple and convenient!

Co to jest URC - URL Scanner?

URC - URL Scanner to rozszerzenie Chrome opracowane przez https://code.rendrr.xyz/urc, a jego główną funkcją jest „To experience a better way to sending links to your associates, this extension comes in handy. This is easy, simple and convenient!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia URC - URL Scanner

Pobierz pliki rozszerzeń URC - URL Scanner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        To experience a better way to sending links to your associates, this extension comes in handy. one needs to add this extension and then the URL that the person intends to send will automatically get converted into QR Code so that one can just scan this code and open the intended website. This is easy, simple and convenient!                    

Podstawowe informacje o rozszerzeniu

Nazwa URC - URL Scanner URC - URL Scanner
ID fhopklpclhecjilkakgbcogngidomkcl
Oficjalny URL https://chromewebstore.google.com/detail/urc-url-scanner/fhopklpclhecjilkakgbcogngidomkcl
Opis To experience a better way to sending links to your associates, this extension comes in handy. This is easy, simple and convenient!
Rozmiar pliku 181 KB
Liczba instalacji 30
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2017-10-10
Data Publikacji 2017-10-10
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://code.rendrr.xyz/urc
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://code.rendrr.xyz/urc/
Adres URL Strony Polityki Prywatności https://rakcode.com/privacypolicy.html
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "URC - URL Scanner",
    "version": "1.0.4",
    "manifest_version": 2,
    "description": "To experience a better way to sending links to your associates, this extension comes in handy. This is easy, simple and convenient!",
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "chrome:\/\/favicon\/",
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "css": [
                "css\/inject.css"
            ],
            "js": [
                "js\/jquery.js",
                "js\/jquery.popupoverlay.js",
                "js\/jquery-qrcode.js",
                "js\/inject.js"
            ]
        }
    ],
    "chrome_url_overrides": {
        "history": "history.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}