Instapaper Reloaded
Some tweaks to instapaper.com
Instapaper Reloaded क्या है?
Instapaper Reloaded Darrin Holst द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Some tweaks to instapaper.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Instapaper Reloaded एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } |