Simple Pocket
Simple Pocket Extension for Chrome - The simplest way to save web pages for read it later
Simple Pocket란 무엇입니까?
Simple Pocket은(는) better read it later에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple Pocket Extension for Chrome - The simplest way to save web pages for read it later"입니다.
확장 프로그램 스크린샷
Simple Pocket 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Add page to "read it later" service by simple way. This addon DO NOT break your HOME PAGE. DO NOT inject in to each page and DO NOT spy your usual browsing. It just add URL to GetPocket only when you click on the button. That's is! Feel free to touch me in comments and making 5 starts ;) Thanks.
확장 프로그램 기본 정보
이름 | Simple Pocket |
ID | kkmmcilocakhceaeelbgmmigimjlhcmb |
공식 URL | https://chromewebstore.google.com/detail/simple-pocket/kkmmcilocakhceaeelbgmmigimjlhcmb |
설명 | Simple Pocket Extension for Chrome - The simplest way to save web pages for read it later |
파일 크기 | 74.48 KB |
설치 횟수 | 195 |
현재 버전 | 1.1 |
최근 업데이트 | 2017-03-19 |
출시 날짜 | 2017-03-19 |
평점 | 4.56/5 총 9 개의 평점 |
개발자 | better read it later |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Pocket", "version": "1.1", "manifest_version": 2, "description": "__MSG_extDescription__", "default_locale": "en", "background": { "persistent": true, "scripts": [ "js\/jquery-2.1.1.min.js", "js\/utils.js", "js\/all.js" ] }, "browser_action": { "default_icon": { "16": "images\/browser-action-icon.png" }, "default_title": "__MSG_browserActionTitle__" }, "permissions": [ "tabs", "contextMenus", "cookies", "notifications", "https:\/\/readitlaterlist.com\/", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "images\/icon128.png", "256": "images\/icon256.png" }, "content_scripts": [ { "matches": [ "*:\/\/getpocket.com\/extension_login_success" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/utils.js", "js\/auth-login.js" ] }, { "matches": [ "*:\/\/getpocket.com\/login?e=4" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/utils.js", "js\/auth-logout.js" ] } ], "web_accessible_resources": [ "images\/error.png", "images\/success.png" ] } |