Save as eBook

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

Save as eBookคืออะไร?

Save as eBook เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex Adam และคุณลักษณะหลักของมันคือ "Save a web page or selection as eBook (.epub)"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Save as eBook

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}