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 拡張機能の基本情報
| 名前 | |
| 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"
} | |