Instapaper highlights exporter
Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.
Qu'est-ce que Instapaper highlights exporter ?
Instapaper highlights exporter est une extension Chrome développée par sawyerh, et sa fonction principale est "Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Instapaper highlights exporter
Téléchargez les fichiers d'extension Instapaper highlights exporter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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).
Informations de Base sur l'Extension
Nom | Instapaper highlights exporter |
ID | oiklmlodhebcmaijgmheoafagfhbeohm |
URL Officiel | https://chromewebstore.google.com/detail/instapaper-highlights-exp/oiklmlodhebcmaijgmheoafagfhbeohm |
Description | Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper. |
Taille du Fichier | 113 KB |
Nombre d'Installations | 664 |
Version Actuelle | 1.0.0.0 |
Dernière Mise à Jour | 2016-09-02 |
Date de Publication | 2016-09-02 |
Évaluation | 4.88/5 Total 8 Évaluations |
Développeur | sawyerh |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |