Instapaper Reloaded
Some tweaks to instapaper.com
Co je Instapaper Reloaded?
Instapaper Reloaded je rozšíření Chrome vyvinuté Darrin Holst, a jeho hlavní funkcí je „Some tweaks to instapaper.com“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Instapaper Reloaded
Stáhněte si soubory rozšíření Instapaper Reloaded ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Instapaper Reloaded |
ID | jhcgodhomejkefepnpccebphcpnpdbni |
Oficiální URL | https://chromewebstore.google.com/detail/instapaper-reloaded/jhcgodhomejkefepnpccebphcpnpdbni |
Popis | Some tweaks to instapaper.com |
Velikost souboru | 51.43 KB |
Počet instalací | 123 |
Aktuální Verze | 3.0.1 |
Poslední Aktualizace | 2014-07-13 |
Datum Vydání | 2014-07-13 |
Hodnocení | 4.00/5 Celkem 1 Hodnocení |
Vývojář | Darrin Holst |
Typ Platby | free |
Podporované Jazyky | 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" } |