Hacker News Notification
Top 30 Hacker News Notification
¿Qué es Hacker News Notification?
Hacker News Notification es una extensión de Chrome desarrollada por http://www.maxy.fr, y su función principal es "Top 30 Hacker News Notification".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Hacker News Notification
Descarga archivos de extensión Hacker News Notification en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Receive notification for each new article published in the top 30 of Hacker News. V2.2 : 2016-08-09 : The notification problem has been fixed V2.1 : 2014 : Adding indications Up (U), Down (D) or Equal (=) for the classification. V2.0 : 2014 : You can now show the list of all articles directly by clicking on the icon on the top right.
Información Básica de la Extensión
Nombre | |
ID | bfiigomihpgomgcnkjiclpcldefojggb |
URL Oficial | https://chrome.google.com/webstore/detail/hacker-news-notification/bfiigomihpgomgcnkjiclpcldefojggb |
Descripción | Top 30 Hacker News Notification |
Tamaño del Archivo | 525 KB |
Cantidad de Instalaciones | 11 |
Versión Actual | 2.2 |
Última Actualización | 2016-08-08 |
Fecha de Publicación | 2016-08-08 |
Desarrollador | http://www.maxy.fr |
Tipo de Pago | free |
Sitio Web de la Extensión | http://www.maxy.fr/blog/article/extension-google-chrome--hacker-news-notification |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hacker News Notification", "version": "2.2", "manifest_version": 2, "description": "Top 30 Hacker News Notification", "permissions": [ "notifications", "background", "tabs", "https:\/\/news.ycombinator.com\/*" ], "background": { "page": "background.html" }, "browser_action": { "default_icon": { "19": "img\/logo19.png", "38": "img\/logo39.png" }, "default_title": "Hacker News Notification", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "js\/popup.js", "js\/background.js" ], "matches": [ "https:\/\/news.ycombinator.com\/*" ] } ], "icons": { "16": "img\/logo16.png", "48": "img\/logo48.png", "128": "img\/logo.png" }, "web_accessible_resources": [ "js\/background.js" ] } |