fimfic2epub

Improved EPUB exporter for Fimfiction

Was ist fimfic2epub?

fimfic2epub ist eine Chrome-Erweiterung, die von djazz entwickelt wurde, und ihr Hauptmerkmal ist "Improved EPUB exporter for Fimfiction".

Erweiterungsscreenshots

screenshot

fimfic2epub-Erweiterungs-CRX-Datei herunterladen

Laden Sie fimfic2epub-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is a Chrome extension to generate improved EPUB ebooks from Fimfiction stories. It replaces the default EPUB download option.                    

Grundlegende Informationen zur Erweiterung

Name fimfic2epub fimfic2epub
ID fiijkoniocipeemlflajmmaecfhfcand
Offizielle URL https://chromewebstore.google.com/detail/fimfic2epub/fiijkoniocipeemlflajmmaecfhfcand
Beschreibung Improved EPUB exporter for Fimfiction
Dateigröße 1.33 MB
Installationsanzahl 227
Aktuelle Version 1.7.57
Letztes Update 2024-03-02
Veröffentlichungsdatum 2020-03-15
Bewertung 5.00/5 Insgesamt 9 Bewertungen
Entwickler djazz
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/daniel-j/fimfic2epub
Hilfeseite URL https://github.com/daniel-j/fimfic2epub/issues
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "fimfic2epub",
    "short_name": "fimfic2epub",
    "description": "Improved EPUB exporter for Fimfiction",
    "version": "1.7.57",
    "icons": {
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "build\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.fimfiction.net\/*",
                "https:\/\/fimfiction.net\/*"
            ],
            "js": [
                "build\/fimfic2epub.js"
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "page_action": {
        "default_icon": "fimfic2epub-logo.png"
    },
    "web_accessible_resources": [
        "fimfic2epub-logo.png"
    ],
    "permissions": [
        "https:\/\/fimfiction.net\/*",
        "https:\/\/*.fimfiction.net\/*",
        "https:\/\/www.googleapis.com\/*",
        "https:\/\/i.ytimg.com\/*",
        "https:\/\/twemoji.maxcdn.com\/*",
        "https:\/\/cdn.jsdelivr.net\/gh\/twitter\/*",
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}