Reading List
A read-it-later browser extension for people with overly ambitious bookmarking habits.
Reading List란 무엇입니까?
Reading List은(는) http://emanuelfeld.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A read-it-later browser extension for people with overly ambitious bookmarking habits."입니다.
확장 프로그램 스크린샷
Reading List 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
* All links are removed after a week, so either read it or forget about it
* Pages bookmarked on the same day are grouped together
* New bookmarks are placed at the bottom, rather than the top, so you are less distracted by flashy new links
* URLs are backed up to the Internet Archive automatically 확장 프로그램 기본 정보
| 이름 | |
| ID | doaafjmonnoioanhdjllgjofacelikhl |
| 공식 URL | https://chrome.google.com/webstore/detail/reading-list/doaafjmonnoioanhdjllgjofacelikhl |
| 설명 | A read-it-later browser extension for people with overly ambitious bookmarking habits. |
| 파일 크기 | 17.24 KB |
| 설치 횟수 | 146 |
| 현재 버전 | 0.4 |
| 최근 업데이트 | 2018-01-09 |
| 출시 날짜 | 2018-01-09 |
| 평점 | 3.50/5 총 2 개의 평점 |
| 개발자 | http://emanuelfeld.github.io |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://github.com/emanuelfeld/reading-list |
| 도움말 페이지 URL | https://github.com/emanuelfeld/reading-list |
| 지원되는 언어 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Reading List",
"version": "0.4",
"description": "A read-it-later browser extension for people with overly ambitious bookmarking habits.",
"author": "Emanuel Feld",
"background": {
"scripts": [
"js\/background.js"
]
},
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"web_accessible_resources": [
"popup.html",
"index.html",
"js\/index.js",
"js\/popup.js"
],
"permissions": [
"https:\/\/web.archive.org\/*",
"contextMenus",
"storage",
"tabs"
],
"browser_action": {
"default_title": "Reading List",
"default_popup": "popup.html",
"default_icon": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
}
}
} | |