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
电子邮箱 [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"
        }
    }
}