Fine Print

Chrome Extension for Improving Printed Version of Popular Online Websites

Cos'è Fine Print?

Fine Print è un'estensione di Chrome sviluppata da Nizar, e la sua funzione principale è "Chrome Extension for Improving Printed Version of Popular Online Websites".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Fine Print

Scarica i file di estensione Fine Print in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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

( :                    

Informazioni di Base sull'Estensione

Nome Fine Print Fine Print
ID haplmldmmjboafjpelboplllnofkhcaj
URL Ufficiale https://chromewebstore.google.com/detail/fine-print/haplmldmmjboafjpelboplllnofkhcaj
Descrizione Chrome Extension for Improving Printed Version of Popular Online Websites
Dimensione del File 24.56 KB
Conteggio Installazioni 256
Versione Corrente 1.1.0
Ultimo Aggiornamento 2020-12-23
Data di Pubblicazione 2020-04-11
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Nizar
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/nizarmah/fineprint
URL della Pagina di Aiuto https://github.com/nizarmah/fineprint
Lingue Supportate 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": []
}