Fine Print

Chrome Extension for Improving Printed Version of Popular Online Websites

Qu'est-ce que Fine Print ?

Fine Print est une extension Chrome développée par Nizar, et sa fonction principale est "Chrome Extension for Improving Printed Version of Popular Online Websites".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Fine Print

Téléchargez les fichiers d'extension Fine Print au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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

( :                    

Informations de Base sur l'Extension

Nom Fine Print Fine Print
ID haplmldmmjboafjpelboplllnofkhcaj
URL Officiel https://chromewebstore.google.com/detail/fine-print/haplmldmmjboafjpelboplllnofkhcaj
Description Chrome Extension for Improving Printed Version of Popular Online Websites
Taille du Fichier 24.56 KB
Nombre d'Installations 256
Version Actuelle 1.1.0
Dernière Mise à Jour 2020-12-23
Date de Publication 2020-04-11
Évaluation 3.00/5 Total 2 Évaluations
Développeur Nizar
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/nizarmah/fineprint
URL de la Page d'Aide https://github.com/nizarmah/fineprint
Langues Prises en Charge 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": []
}