Webtoon to PDF

Converts webtoon pages to PDFs

Webtoon to PDFとは何ですか?

Webtoon to PDFはdontaskwhyによって開発されたChromeの拡張機能で、その主な機能は「Converts webtoon pages to PDFs」です。

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

screenshot

Webtoon to PDF拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Converts webtoons from comic.naver.com into pdf files for quick and easy offline reading                    

拡張機能の基本情報

名前 Webtoon to PDF Webtoon to PDF
ID ohchlfahbejfldhnniiccfehipehfchf
公式URL https://chromewebstore.google.com/detail/webtoon-to-pdf/ohchlfahbejfldhnniiccfehipehfchf
説明 Converts webtoon pages to PDFs
ファイルサイズ 127 KB
インストール数 605
現在のバージョン 0.1
最終更新日 2022-04-29
公開日 2022-04-29
評価 1.00/5 合計 2 レビュー
開発者 dontaskwhy
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Fox-Islam/webtoon-to-pdf
ヘルプページのURL https://github.com/Fox-Islam/webtoon-to-pdf
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Webtoon to PDF",
    "description": "Converts webtoon pages to PDFs",
    "version": "0.1",
    "manifest_version": 3,
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/comic.naver.com\/webtoon\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "\/images\/icon-128.png"
        }
    },
    "icons": {
        "128": "\/images\/icon-128.png"
    }
}