NetScore Smart Print

Print PDF Page which has user given specific keywords in URL.

Co to jest NetScore Smart Print?

NetScore Smart Print to rozszerzenie Chrome opracowane przez NetScore Technologies, a jego główną funkcją jest „Print PDF Page which has user given specific keywords in URL.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia NetScore Smart Print

Pobierz pliki rozszerzeń NetScore Smart Print 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

                        NetScore Smart Print allows users to print PDF/Pages/Docs.. based on your initial setup.
Smart print is based on combination of two keywords selection.

If you want print PDF automatically from the printer,then we have to pass two keywords for this Extension and ON the plugin.

If words in the URL matches with the given keywords then it will print that page directly.

You can anytime enable or disable this extension.                    

Podstawowe informacje o rozszerzeniu

Nazwa NetScore Smart Print NetScore Smart Print
ID idpjjniajlllnedpgfepapicilfajdmd
Oficjalny URL https://chromewebstore.google.com/detail/netscore-smart-print/idpjjniajlllnedpgfepapicilfajdmd
Opis Print PDF Page which has user given specific keywords in URL.
Rozmiar pliku 22.44 KB
Liczba instalacji 75
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2019-02-11
Data Publikacji 2019-02-11
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper NetScore Technologies
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NetScore Smart Print",
    "description": "Print PDF Page which has user given specific keywords in URL.",
    "version": "1.2",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "Netscore.png",
        "default_title": "NetScore Smart Print",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "manifest_version": 2
}