Instapaper Reloaded
Some tweaks to instapaper.com
什麼是Instapaper Reloaded?
Instapaper Reloaded是由Darrin Holst開發的Chrome擴展程式,該擴展的主要功能是“Some tweaks to instapaper.com”。
擴展截圖
下載Instapaper Reloaded擴展crx文件
下載Instapaper Reloaded擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } |