Epublifier

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

Cos'è Epublifier?

Epublifier è un'estensione di Chrome sviluppata da maoserr, e la sua funzione principale è "A tool to convert website based books or list of pages to ePub format to read on your eReader/Kindle/etc.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Epublifier

Scarica i file di estensione Epublifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        # 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.                    

Informazioni di Base sull'Estensione

Nome Epublifier Epublifier
ID eopjnahefjhnhfanplcjpbbdkpbagikk
URL Ufficiale https://chromewebstore.google.com/detail/epublifier/eopjnahefjhnhfanplcjpbbdkpbagikk
Descrizione A tool to convert website based books or list of pages to ePub format to read on your eReader/Kindle/etc.
Dimensione del File 2.11 MB
Conteggio Installazioni 1,386
Versione Corrente 3.0.125
Ultimo Aggiornamento 2023-12-01
Data di Pubblicazione 2021-11-08
Valutazione 3.25/5 Totale 8 Valutazioni
Sviluppatore maoserr
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/maoserr/epublifier
URL della Pagina di Aiuto https://github.com/maoserr/epublifier/issues
Lingue Supportate 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"
}