Fine Print

Chrome Extension for Improving Printed Version of Popular Online Websites

Fine Print क्या है?

Fine Print Nizar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome Extension for Improving Printed Version of Popular Online Websites"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fine Print एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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

( :                    

एक्सटेंशन की मूल जानकारी

नाम Fine Print Fine Print
ID haplmldmmjboafjpelboplllnofkhcaj
आधिकारिक URL https://chromewebstore.google.com/detail/fine-print/haplmldmmjboafjpelboplllnofkhcaj
विवरण Chrome Extension for Improving Printed Version of Popular Online Websites
फ़ाइल का आकार 24.56 KB
स्थापना संख्या 256
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2020-12-23
प्रकाशन तिथि 2020-04-11
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर Nizar
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/nizarmah/fineprint
सहायता पृष्ठ URL https://github.com/nizarmah/fineprint
समर्थित भाषाएँ 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": []
}