ePubby
Transform websites into ebooks to read anywhere.
ePubby란 무엇입니까?
ePubby은(는) marcusnaweb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Transform websites into ebooks to read anywhere."입니다.
확장 프로그램 스크린샷
ePubby 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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\/" ] } |