ePubby

Transform websites into ebooks to read anywhere.

Was ist ePubby?

ePubby ist eine Chrome-Erweiterung, die von marcusnaweb entwickelt wurde, und ihr Hauptmerkmal ist "Transform websites into ebooks to read anywhere.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ePubby-Erweiterungs-CRX-Datei herunterladen

Laden Sie ePubby-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

                        ePubby is a chrome extension that give you the power to store the web.

Just hold CTRL and move the mouse to the area containing the links you want to make an epub, then click, refine your selection and Convert!

It's a early version, so things may go wrong sometimes, but we're working to make it better everyday.

And please, respect the Terms of Service of the content you're trying to download, some content makers don't like to have their data scraped.                    

Grundlegende Informationen zur Erweiterung

Name ePubby ePubby
ID mbejgngflcfhhbanmcbjkfpjlgiekghg
Offizielle URL https://chrome.google.com/webstore/detail/epubby/mbejgngflcfhhbanmcbjkfpjlgiekghg
Beschreibung Transform websites into ebooks to read anywhere.
Dateigröße 211 KB
Installationsanzahl 158
Aktuelle Version 0.0.1
Letztes Update 2016-03-25
Veröffentlichungsdatum 2016-03-25
Bewertung 2.00/5 Insgesamt 1 Bewertungen
Entwickler marcusnaweb
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ePubby",
    "description": "Transform websites into ebooks to read anywhere.",
    "version": "0.0.1",
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "popup.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/bootstrap\/js\/modal.js",
                "bower_components\/react\/react.js",
                "bower_components\/react\/react-dom.js",
                "modal.js",
                "main.js"
            ],
            "css": [
                "main-style.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "https:\/\/ajax.googleapis.com\/"
    ]
}