ePubby

Transform websites into ebooks to read anywhere.

什么是ePubby?

ePubby是由marcusnaweb开发的Chrome扩展程序,该扩展的主要功能是“Transform websites into ebooks to read anywhere.”。

扩展截图

screenshot
screenshot
screenshot

下载ePubby扩展crx文件

下载ePubby扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 ePubby ePubby
ID mbejgngflcfhhbanmcbjkfpjlgiekghg
官方URL https://chrome.google.com/webstore/detail/epubby/mbejgngflcfhhbanmcbjkfpjlgiekghg
简介 Transform websites into ebooks to read anywhere.
文件大小 211 KB
安装次数 158
当前版本 0.0.1
更新时间 2016-03-25
上架时间 2016-03-25
评分 2.00/5 共1次评分
开发者 marcusnaweb
付费类型 free
支持的语言 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\/"
    ]
}