Click & Print

Printing an element from a webpage in one click.

O que é Click & Print?

Click & Print é uma extensão do Chrome desenvolvida por nicoula, e sua principal característica é "Printing an element from a webpage in one click.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Click & Print

Baixe arquivos de extensão Click & 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

                        It's a chrome extension used for printing an element from a webpage in one click.

To avoid the print preview from chrome, you have to change the shortcut of chrome.
Old one: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
New one: ""C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --kiosk-printing

Then, you just have to go to the options page, configure the id(html id of the element) you would like to print and that's it!

In the next update, I will include a new feature which doesn't need to be a developer to use it i.e. you will just have to right click on the element you want to print and select "configure for Click & Print".

If you would like a new feature or if there is a bug, please let me know in the comment section.                    

Informações Básicas da Extensão

Nome Click & Print Click & Print
ID plgkocaojdkhnjehoddjmblahknnijdj
URL Oficial https://chrome.google.com/webstore/detail/click-print/plgkocaojdkhnjehoddjmblahknnijdj
Descrição Printing an element from a webpage in one click.
Tamanho do Arquivo 9.11 KB
Contagem de Instalações 1,000
Versão Atual 1.1
Última Atualização 2016-05-24
Data de Publicação 2016-05-24
Classificação 3.50/5 Total de 4 Avaliações
Desenvolvedor nicoula
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click & Print",
    "version": "1.1",
    "description": "Printing an element from a webpage in one click.",
    "manifest_version": 2,
    "options_page": "options.html",
    "icons": {
        "16": "img\/print_16x16.png",
        "48": "img\/print_48x48.png",
        "128": "img\/print_128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Impression ticket",
        "default_icon": {
            "16": "img\/print_16x16.png",
            "48": "img\/print_48x48.png",
            "128": "img\/print_128x128.png"
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}