Save as eBook

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

What is Save as eBook?

Save as eBook is a Chrome extension developed by Alex Adam, and its main feature is "Save a web page or selection as eBook (.epub)".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Save as eBook Extension CRX File

Download Save as eBook extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Save as eBook Save as eBook
ID haaplkpoiimngbppjihnegfmpejdnffj
Official URL https://chromewebstore.google.com/detail/save-as-ebook/haaplkpoiimngbppjihnegfmpejdnffj
Description Save a web page or selection as eBook (.epub)
File Size 111 KB
Installation Count 10,000
Current Version 1.4.3
Last Updated 2022-05-22
Publish Date 2020-06-27
Rating 4.13/5 Total 48 Ratings
Developer Alex Adam
Email [email protected]
Payment Type free
Extension Website https://github.com/alexadam/save-as-ebook
Help Page URL https://github.com/alexadam/save-as-ebook
Supported Languages 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"
        }
    }
}