ePubby
Transform websites into ebooks to read anywhere.
What is ePubby?
ePubby is a Chrome extension developed by marcusnaweb, and its main feature is "Transform websites into ebooks to read anywhere.".
Extension Screenshots
Download ePubby Extension CRX File
Download ePubby extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | mbejgngflcfhhbanmcbjkfpjlgiekghg |
Official URL | https://chrome.google.com/webstore/detail/epubby/mbejgngflcfhhbanmcbjkfpjlgiekghg |
Description | Transform websites into ebooks to read anywhere. |
File Size | 211 KB |
Installation Count | 158 |
Current Version | 0.0.1 |
Last Updated | 2016-03-25 |
Publish Date | 2016-03-25 |
Rating | 2.00/5 Total 1 Ratings |
Developer | marcusnaweb |
Payment Type | free |
Supported Languages | 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\/" ] } |