NetScore Smart Print

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

Was ist NetScore Smart Print?

NetScore Smart Print ist eine Chrome-Erweiterung, die von NetScore Technologies entwickelt wurde, und ihr Hauptmerkmal ist "Print PDF Page which has user given specific keywords in URL.".

Erweiterungsscreenshots

screenshot
screenshot

NetScore Smart Print-Erweiterungs-CRX-Datei herunterladen

Laden Sie NetScore Smart Print-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name NetScore Smart Print NetScore Smart Print
ID idpjjniajlllnedpgfepapicilfajdmd
Offizielle URL https://chromewebstore.google.com/detail/netscore-smart-print/idpjjniajlllnedpgfepapicilfajdmd
Beschreibung Print PDF Page which has user given specific keywords in URL.
Dateigröße 22.44 KB
Installationsanzahl 75
Aktuelle Version 1.2
Letztes Update 2019-02-11
Veröffentlichungsdatum 2019-02-11
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler NetScore Technologies
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}