NetScore Smart Print

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

Vad är NetScore Smart Print?

NetScore Smart Print är en Chrome-tillägg utvecklad av NetScore Technologies, och dess huvudfunktion är "Print PDF Page which has user given specific keywords in URL.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner NetScore Smart Print-förlängningens CRX-fil

Ladda ner NetScore Smart Print-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

                        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.                    

Grundläggande Information om Tillägg

Namn NetScore Smart Print NetScore Smart Print
ID idpjjniajlllnedpgfepapicilfajdmd
Officiell webbadress https://chromewebstore.google.com/detail/netscore-smart-print/idpjjniajlllnedpgfepapicilfajdmd
Beskrivning Print PDF Page which has user given specific keywords in URL.
Filstorlek 22.44 KB
Antal Installationer 75
Aktuell Version 1.2
Senast Uppdaterad 2019-02-11
Publiceringsdatum 2019-02-11
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare NetScore Technologies
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}