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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        # 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
URL страницы помощи 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"
}