Save as eBook

Save a web page or selection as eBook (.epub)

O que é Save as eBook?

Save as eBook é uma extensão do Chrome desenvolvida por Alex Adam, e sua principal característica é "Save a web page or selection as eBook (.epub)".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Save as eBook

Baixe arquivos de extensão Save as eBook no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Save a web page or selection as an eBook (.epub format)                    

Informações Básicas da Extensão

Nome Save as eBook Save as eBook
ID haaplkpoiimngbppjihnegfmpejdnffj
URL Oficial https://chromewebstore.google.com/detail/save-as-ebook/haaplkpoiimngbppjihnegfmpejdnffj
Descrição Save a web page or selection as eBook (.epub)
Tamanho do Arquivo 111 KB
Contagem de Instalações 10,000
Versão Atual 1.4.3
Última Atualização 2022-05-22
Data de Publicação 2020-06-27
Classificação 4.13/5 Total de 48 Avaliações
Desenvolvedor Alex Adam
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/alexadam/save-as-ebook
URL da Página de Ajuda https://github.com/alexadam/save-as-ebook
Idiomas Suportados en,fr,pt-BR,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "1.4.3",
    "default_locale": "en",
    "author": "Alex Adam",
    "homepage_url": "https:\/\/github.com\/alexadam\/save-as-ebook",
    "description": "Save a web page or selection as eBook (.epub)",
    "icons": {
        "48": "icons\/book48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/libs\/jquery.js",
                ".\/libs\/jszip.js",
                ".\/libs\/jszip-utils.js",
                ".\/libs\/pure-parser.js",
                ".\/libs\/cssjson.js",
                ".\/libs\/filesaver.js",
                "saveEbook.js",
                "extractHtml.js",
                "utils.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/book32.png",
        "default_title": "Save as eBook",
        "default_popup": "menu.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage",
        ""
    ],
    "commands": {
        "save-page": {
            "suggested_key": {
                "default": "Alt+Shift+1"
            },
            "description": "Save current page as eBook"
        },
        "save-selection": {
            "suggested_key": {
                "default": "Alt+Shift+2"
            },
            "description": "Save current selection as eBook"
        },
        "add-page": {
            "suggested_key": {
                "default": "Alt+Shift+3"
            },
            "description": "Add current page as chapter"
        },
        "add-selection": {
            "suggested_key": {
                "default": "Alt+Shift+4"
            },
            "description": "Add current selection as chapter"
        }
    }
}