Instapaper highlights exporter
Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.
Instapaper highlights exporter क्या है?
Instapaper highlights exporter sawyerh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Instapaper highlights exporter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A simple Chrome extension that adds a button to your browser toolbar which, when clicked, will export your Instapaper highlights as an HTML page (with JSON output included).
एक्सटेंशन की मूल जानकारी
नाम | Instapaper highlights exporter |
ID | oiklmlodhebcmaijgmheoafagfhbeohm |
आधिकारिक URL | https://chromewebstore.google.com/detail/instapaper-highlights-exp/oiklmlodhebcmaijgmheoafagfhbeohm |
विवरण | Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper. |
फ़ाइल का आकार | 113 KB |
स्थापना संख्या | 664 |
वर्तमान संस्करण | 1.0.0.0 |
अंतिम अपडेट | 2016-09-02 |
प्रकाशन तिथि | 2016-09-02 |
रेटिंग | 4.88/5 कुल 8 रेटिंग्स |
डेवलपर | sawyerh |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0.0.0", "name": "Instapaper highlights exporter", "description": "Visit instapaper.com\/notes and click the extension icon to export your highlights from Instapaper.", "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "48.0" } }, "background": { "scripts": [ "assets\/js\/background.min.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.instapaper.com\/*" ], "js": [ "\/assets\/js\/content-script.min.js" ] } ], "browser_action": { "default_icon": "\/assets\/images\/action-icon-38.png", "default_title": "Export Instapaper notes" }, "permissions": [ "https:\/\/www.instapaper.com\/", "downloads", "tabs" ], "icons": { "16": "assets\/images\/icon-16.png", "32": "assets\/images\/icon-32.png", "48": "assets\/images\/icon-48.png", "64": "assets\/images\/icon-64.png", "128": "assets\/images\/icon-128.png" } } |