Gutenberg Ebook Reader
A scaffold to save gutenberg.org's book to google drive,and read it more comfortable.
Gutenberg Ebook Reader란 무엇입니까?
Gutenberg Ebook Reader은(는) https://owlsee.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A scaffold to save gutenberg.org's book to google drive,and read it more comfortable."입니다.
확장 프로그램 스크린샷
Gutenberg Ebook Reader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A scaffold to save gutenberg.org's(https://www.gutenberg.org/) ebook to google drive,and read it more comfortable. * list 'Top 100 EBooks yesterday' * save text book to google drive * read text book more comfortable. history: 1. version 1.0.1, 2018.3.28, first release.
확장 프로그램 기본 정보
이름 | |
ID | ldinbflbhmhemnegaeoenjemecncpkhm |
공식 URL | https://chrome.google.com/webstore/detail/gutenberg-ebook-reader/ldinbflbhmhemnegaeoenjemecncpkhm |
설명 | A scaffold to save gutenberg.org's book to google drive,and read it more comfortable. |
파일 크기 | 160 KB |
설치 횟수 | 1,000 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2018-04-15 |
출시 날짜 | 2018-04-15 |
평점 | 4.22/5 총 9 개의 평점 |
개발자 | https://owlsee.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://reader.owlsee.com/files |
도움말 페이지 URL | http://owlsee.com/contact |
개인정보 보호 정책 페이지 URL | https://reader.owlsee.com/legal |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gutenberg Ebook Reader", "description": "A scaffold to save gutenberg.org's book to google drive,and read it more comfortable.", "version": "1.0.3", "manifest_version": 2, "icons": { "16": "img\/logo16.png", "24": "img\/logo24.png", "32": "img\/logo32.png", "48": "img\/logo48.png", "128": "img\/logo128.png", "256": "img\/logo256.png" }, "browser_action": { "default_title": "Gutenberg Ebook Reader", "default_icon": { "16": "img\/logo16.png", "24": "img\/logo24.png", "32": "img\/logo32.png", "48": "img\/logo48.png", "128": "img\/logo128.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.gutenberg.org\/*", "http:\/\/*.gutenberg.org\/*" ], "js": [ "js\/content.js" ] } ], "permissions": [ "tabs", "https:\/\/*.gutenberg.org\/*", "http:\/\/*.gutenberg.org\/*" ] } |