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.…
O que é Read Later for Hacker News?
Read Later for Hacker News é uma extensão do Chrome desenvolvida por Julian Santa Ana, e sua principal característica é "Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Read Later for Hacker News
Baixe arquivos de extensão Read Later for Hacker News no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Read Later for Hacker News |
ID | kcfdkmoconldndmnipphejclfmajmanc |
URL Oficial | https://chromewebstore.google.com/detail/read-later-for-hacker-new/kcfdkmoconldndmnipphejclfmajmanc |
Descrição | Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.… |
Tamanho do Arquivo | 253 KB |
Contagem de Instalações | 27 |
Versão Atual | 1.0 |
Última Atualização | 2014-06-16 |
Data de Publicação | 2014-06-16 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Julian Santa Ana |
Tipo de Pagamento | free |
URL da Página de Ajuda | http://me.juliann.com.ar |
Idiomas Suportados | 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" ] } |