Instapaper Reloaded
Some tweaks to instapaper.com
Instapaper Reloaded란 무엇입니까?
Instapaper Reloaded은(는) Darrin Holst에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Some tweaks to instapaper.com"입니다.
확장 프로그램 스크린샷
Instapaper Reloaded 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension tweaks the layout of instapaper.com and adds some keyboard shortcuts. Press ? on instapaper.com for all the shortcuts. Press Ctrl + i on any other web site to add an article to your instapaper account. 07-03-2014: Time permitted to get it mostly working with the new site design. #ymmv 08-30-2013: the site redesign broke almost everything. Disabling stuff for now. I'll bring it back as time permits 03-24-2013: added ability to archive from the article text view 09-13-2012: added option to reverse the sort order of unread articles
확장 프로그램 기본 정보
이름 | Instapaper Reloaded |
ID | jhcgodhomejkefepnpccebphcpnpdbni |
공식 URL | https://chromewebstore.google.com/detail/instapaper-reloaded/jhcgodhomejkefepnpccebphcpnpdbni |
설명 | Some tweaks to instapaper.com |
파일 크기 | 51.43 KB |
설치 횟수 | 123 |
현재 버전 | 3.0.1 |
최근 업데이트 | 2014-07-13 |
출시 날짜 | 2014-07-13 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | Darrin Holst |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Instapaper Reloaded", "version": "3.0.1", "description": "Some tweaks to instapaper.com", "permissions": [ "https:\/\/www.instapaper.com\/" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*.instapaper.com\/*" ], "css": [ "css\/reloaded.css" ], "js": [ "javascripts\/jquery.js", "javascripts\/jquery.hotkeys.js", "javascripts\/scroller.js", "javascripts\/reloaded.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "javascripts\/opener.js" ] } ], "background": { "scripts": [ "javascripts\/background.js" ] }, "options_page": "html\/options.html" } |