Fine Print

Chrome Extension for Improving Printed Version of Popular Online Websites

Fine Printとは何ですか?

Fine PrintはNizarによって開発されたChromeの拡張機能で、その主な機能は「Chrome Extension for Improving Printed Version of Popular Online Websites」です。

拡張機能のスクリーンショット

screenshot

Fine Print拡張機能のCRXファイルをダウンロード

Fine Print拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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": []
}