Instapaper
Instapaper browser extension to save links for offline reading.
Instapaper란 무엇입니까?
Instapaper은(는) https://www.instapaper.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Instapaper browser extension to save links for offline reading."입니다.
확장 프로그램 스크린샷
Instapaper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Instapaper is a simple tool for saving web pages to read later on your iPhone, iPad, Android, computer, or Kindle. This browser extension may be used in place of the bookmarklet to save articles directly into your Instapaper queue. It works by saving the current tab to your Instapaper account . Users who aren't logged in will be taken to a login or signup page, after completing the process they will be redirected back to the original page with the original page saved in their queue.
확장 프로그램 기본 정보
이름 | Instapaper |
ID | ldjkgaaoikpmhmkelcgkgacicjfbofhh |
공식 URL | https://chromewebstore.google.com/detail/instapaper/ldjkgaaoikpmhmkelcgkgacicjfbofhh |
설명 | Instapaper browser extension to save links for offline reading. |
파일 크기 | 65.03 KB |
설치 횟수 | 262,237 |
현재 버전 | 2.2.1 |
최근 업데이트 | 2023-08-17 |
출시 날짜 | 2020-04-16 |
평점 | 3.77/5 총 517 개의 평점 |
개발자 | https://www.instapaper.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.instapaper.com |
도움말 페이지 URL | https://instapaper.zendesk.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Instapaper", "description": "Instapaper browser extension to save links for offline reading.", "version": "2.2.1", "options_page": "options.html", "icons": { "16": "insta_logo_tiny.png", "48": "insta_logo_small.png", "128": "insta_logo.png" }, "commands": { "ctrl-shift-s": { "suggested_key": { "default": "Ctrl+Shift+S" }, "description": "Save article keyboard shortcut" } }, "permissions": [ "storage", "activeTab", "contextMenus" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "service_worker": "readlater.js", "type": "module" }, "action": { "default_icon": "insta_default_action.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "bookmarklet.js", "deflate-base64-min.js", "highlight_ugly.js" ], "css": [ "instapaper.css" ], "run_at": "document_start" }, { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "twitter.js" ] }, { "matches": [ "http:\/\/www.reddit.com\/*" ], "js": [ "reddit.js" ] }, { "matches": [ "https:\/\/news.ycombinator.com\/*" ], "js": [ "hackernews.js" ] }, { "matches": [ "http:\/\/www.usv.com\/", "https:\/\/www.usv.com\/" ], "js": [ "usv.js" ], "css": [ "usv.css" ] } ], "web_accessible_resources": [ { "resources": [ "*.png" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |