ePubby
Transform websites into ebooks to read anywhere.
什麼是ePubby?
ePubby是由marcusnaweb開發的Chrome擴展程式,該擴展的主要功能是“Transform websites into ebooks to read anywhere.”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | mbejgngflcfhhbanmcbjkfpjlgiekghg |
官方網址 | 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\/" ] } |