Fine Print

Chrome Extension for Improving Printed Version of Popular Online Websites

O que é Fine Print?

Fine Print é uma extensão do Chrome desenvolvida por Nizar, e sua principal característica é "Chrome Extension for Improving Printed Version of Popular Online Websites".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Fine Print

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

                        Most websites do not have a good printable PDF version.
In other words, when you try to print their pages, they have images that are cut between two pages. In addition, some websites show their footers, sidebars, or even ads in their PDF printable versions.
This chrome extension makes the printable versions of those PDFs much nicer for popular websites.
In addition, it is open sourced for people to be able to contribute to making other websites they frequently print or save as PDF much nicer.

All you have to do is install the extension, and it will make supported websites look better when being printed, automatically. ( ;

So if a website is supported, its Print Preview will look better than usual! 
If it isn't supported, and you'd like us to support it; kindly check the GitHub link in the bottom to raise an Issue requesting a website to be supported!

Currently Supported Websites:
         - Medium websites

If you wish to contribute, kindly go to :
https://github.com/nizarmah/fineprint

( :                    

Informações Básicas da Extensão

Nome Fine Print Fine Print
ID haplmldmmjboafjpelboplllnofkhcaj
URL Oficial https://chromewebstore.google.com/detail/fine-print/haplmldmmjboafjpelboplllnofkhcaj
Descrição Chrome Extension for Improving Printed Version of Popular Online Websites
Tamanho do Arquivo 24.56 KB
Contagem de Instalações 256
Versão Atual 1.1.0
Última Atualização 2020-12-23
Data de Publicação 2020-04-11
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor Nizar
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/nizarmah/fineprint
URL da Página de Ajuda https://github.com/nizarmah/fineprint
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fine Print",
    "short_name": "Fine Print",
    "description": "Chrome Extension for Improving Printed Version of Popular Online Websites",
    "version": "1.1.0",
    "icons": {
        "128": "icon\/default.png"
    },
    "background": {
        "scripts": [
            "validator.js",
            "page_rules.js",
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "css\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "injector.js"
            ]
        }
    ],
    "permissions": []
}