Epublifier

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

Qu'est-ce que Epublifier ?

Epublifier est une extension Chrome développée par maoserr, et sa fonction principale est "A tool to convert website based books or list of pages to ePub format to read on your eReader/Kindle/etc.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Epublifier

Téléchargez les fichiers d'extension Epublifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Epublifier Epublifier
ID eopjnahefjhnhfanplcjpbbdkpbagikk
URL Officiel https://chromewebstore.google.com/detail/epublifier/eopjnahefjhnhfanplcjpbbdkpbagikk
Description A tool to convert website based books or list of pages to ePub format to read on your eReader/Kindle/etc.
Taille du Fichier 2.11 MB
Nombre d'Installations 1,386
Version Actuelle 3.0.125
Dernière Mise à Jour 2023-12-01
Date de Publication 2021-11-08
Évaluation 3.25/5 Total 8 Évaluations
Développeur maoserr
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/maoserr/epublifier
URL de la Page d'Aide https://github.com/maoserr/epublifier/issues
Langues Prises en Charge 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"
}