Fine Print

Chrome Extension for Improving Printed Version of Popular Online Websites

ما هو Fine Print؟

Fine Print هو إضافة Chrome تم تطويرها بواسطة Nizar، والميزة الرئيسية لها هي "Chrome Extension for Improving Printed Version of Popular Online Websites".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Fine Print

قم بتنزيل ملفات الامتداد Fine Print بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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": []
}