Epublifier

A tool to convert website based books or list of pages to ePub format to read on your eReader/Kindle/etc.

ما هو Epublifier؟

Epublifier هو إضافة Chrome تم تطويرها بواسطة maoserr، والميزة الرئيسية لها هي "A tool to convert website based books or list of pages to ePub format to read on your eReader/Kindle/etc.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Epublifier

قم بتنزيل ملفات الامتداد Epublifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        # Epublifier #

Converts websites into epub.

A tool that allows you to extract a list of html pages from a table of content page and compile them into an ePub book to be imported into your eReader of choice.

For advanced users who can write javascript, you can add additional parser definition to customize parsing of any site.

Check out the [wiki](https://github.com/maoserr/epublifier/wiki) for usage.                    

معلومات أساسية عن التمديد

الاسم Epublifier Epublifier
ID eopjnahefjhnhfanplcjpbbdkpbagikk
عنوان URL الرسمي https://chromewebstore.google.com/detail/epublifier/eopjnahefjhnhfanplcjpbbdkpbagikk
الوصف A tool to convert website based books or list of pages to ePub format to read on your eReader/Kindle/etc.
حجم الملف 2.11 MB
عدد التثبيتات 1,386
النسخة الحالية 3.0.125
آخر تحديث 2023-12-01
تاريخ النشر 2021-11-08
تقييم 3.25/5 مجموع تقييمات 8
المطور maoserr
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/maoserr/epublifier
عنوان صفحة المساعدة https://github.com/maoserr/epublifier/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Epublifier",
    "permissions": [
        "downloads",
        "storage",
        "clipboardRead",
        "unlimitedStorage",
        "scripting"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "author": "Mao Yu",
    "description": "A tool to convert website based books or list of pages to ePub format to read on your eReader\/Kindle\/etc.",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 3,
    "host_permissions": [
        ""
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Epublifier"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/*.js",
                "js\/*.map",
                "css\/*.css",
                "*.woff",
                "*.woff2",
                "*.ttf",
                "sidebar.html",
                "sandbox.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    },
    "background": {
        "service_worker": "js\/service_worker.js"
    },
    "version": "3.0.125"
}