Read Later for Hacker News
Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…
Qu'est-ce que Read Later for Hacker News ?
Read Later for Hacker News est une extension Chrome développée par Julian Santa Ana, et sa fonction principale est "Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Read Later for Hacker News
Téléchargez les fichiers d'extension Read Later for Hacker News 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
Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services. Simply install this extension and head over to Hacker News to see a new added function right next to the comments' count that says Read Later, click on it and the story will be automatically saved to your Pocket or Instapaper account for you to read when you want. It will also add automatically tags to it so that you can find your HackerNews stories more easily.
Informations de Base sur l'Extension
Nom | Read Later for Hacker News |
ID | kcfdkmoconldndmnipphejclfmajmanc |
URL Officiel | https://chromewebstore.google.com/detail/read-later-for-hacker-new/kcfdkmoconldndmnipphejclfmajmanc |
Description | Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.… |
Taille du Fichier | 253 KB |
Nombre d'Installations | 27 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-06-16 |
Date de Publication | 2014-06-16 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Julian Santa Ana |
Type de Paiement | free |
URL de la Page d'Aide | http://me.juliann.com.ar |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Read Later for Hacker News", "description": "", "version": "1.0", "icons": { "128": "icon128.png" }, "manifest_version": 2, "options_page": "options.html", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/news.ycombinator.com\/*", "https:\/\/news.ycombinator.com\/*" ], "js": [ "jquery-1.11.0.min.js", "dontforgetyourkeys.js", "hnreadlater.js" ] } ], "permissions": [ "https:\/\/getpocket.com\/v3\/oauth\/request", "https:\/\/getpocket.com\/v3\/oauth\/authorize", "https:\/\/getpocket.com\/v3\/add", "https:\/\/www.instapaper.com\/api\/authenticate", "https:\/\/www.instapaper.com\/api\/add" ], "web_accessible_resources": [ "welcome.html" ] } |