NetScore Smart Print

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

O que é NetScore Smart Print?

NetScore Smart Print é uma extensão do Chrome desenvolvida por NetScore Technologies, e sua principal característica é "Print PDF Page which has user given specific keywords in URL.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão NetScore Smart Print

Baixe arquivos de extensão NetScore Smart Print no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome NetScore Smart Print NetScore Smart Print
ID idpjjniajlllnedpgfepapicilfajdmd
URL Oficial https://chromewebstore.google.com/detail/netscore-smart-print/idpjjniajlllnedpgfepapicilfajdmd
Descrição Print PDF Page which has user given specific keywords in URL.
Tamanho do Arquivo 22.44 KB
Contagem de Instalações 75
Versão Atual 1.2
Última Atualização 2019-02-11
Data de Publicação 2019-02-11
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor NetScore Technologies
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}