Save as eBook

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

Save as eBook là gì?

Save as eBook là một tiện ích mở rộng Chrome được phát triển bởi Alex Adam, và tính năng chính của nó là "Save a web page or selection as eBook (.epub)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Save as eBook

Tải xuống các tệp mở rộng Save as eBook dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Save as eBook Save as eBook
ID haaplkpoiimngbppjihnegfmpejdnffj
URL Chính Thức https://chromewebstore.google.com/detail/save-as-ebook/haaplkpoiimngbppjihnegfmpejdnffj
Mô tả Save a web page or selection as eBook (.epub)
Kích Thước Tệp 111 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 1.4.3
Cập Nhật Lần Cuối 2022-05-22
Ngày Phát Hành 2020-06-27
Đánh Giá 4.13/5 Tổng số 48 Đánh Giá
Nhà Phát Triển Alex Adam
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/alexadam/save-as-ebook
URL Trang Trợ Giúp https://github.com/alexadam/save-as-ebook
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}