Save as eBook

Save a web page or selection as eBook (.epub)

Save as eBookとは何ですか?

Save as eBookはAlex Adamによって開発されたChromeの拡張機能で、その主な機能は「Save a web page or selection as eBook (.epub)」です。

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

screenshot
screenshot
screenshot
screenshot

Save as eBook拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Save a web page or selection as an eBook (.epub format)                    

拡張機能の基本情報

名前 Save as eBook Save as eBook
ID haaplkpoiimngbppjihnegfmpejdnffj
公式URL https://chromewebstore.google.com/detail/save-as-ebook/haaplkpoiimngbppjihnegfmpejdnffj
説明 Save a web page or selection as eBook (.epub)
ファイルサイズ 111 KB
インストール数 10,000
現在のバージョン 1.4.3
最終更新日 2022-05-22
公開日 2020-06-27
評価 4.13/5 合計 48 レビュー
開発者 Alex Adam
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/alexadam/save-as-ebook
ヘルプページのURL https://github.com/alexadam/save-as-ebook
対応言語 en,fr,pt-BR,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "1.4.3",
    "default_locale": "en",
    "author": "Alex Adam",
    "homepage_url": "https:\/\/github.com\/alexadam\/save-as-ebook",
    "description": "Save a web page or selection as eBook (.epub)",
    "icons": {
        "48": "icons\/book48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/libs\/jquery.js",
                ".\/libs\/jszip.js",
                ".\/libs\/jszip-utils.js",
                ".\/libs\/pure-parser.js",
                ".\/libs\/cssjson.js",
                ".\/libs\/filesaver.js",
                "saveEbook.js",
                "extractHtml.js",
                "utils.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/book32.png",
        "default_title": "Save as eBook",
        "default_popup": "menu.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage",
        ""
    ],
    "commands": {
        "save-page": {
            "suggested_key": {
                "default": "Alt+Shift+1"
            },
            "description": "Save current page as eBook"
        },
        "save-selection": {
            "suggested_key": {
                "default": "Alt+Shift+2"
            },
            "description": "Save current selection as eBook"
        },
        "add-page": {
            "suggested_key": {
                "default": "Alt+Shift+3"
            },
            "description": "Add current page as chapter"
        },
        "add-selection": {
            "suggested_key": {
                "default": "Alt+Shift+4"
            },
            "description": "Add current selection as chapter"
        }
    }
}