Hacker News Comments Notifier Plugin

Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published

¿Qué es Hacker News Comments Notifier Plugin?

Hacker News Comments Notifier Plugin es una extensión de Chrome desarrollada por https://www.binomads.com, y su función principal es "Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Hacker News Comments Notifier Plugin

Descarga archivos de extensión Hacker News Comments Notifier Plugin 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

                        - Get notifications of Hacker News' threads.
- Receive notifications each 10 minutes of the threads you get subscribed to.
- At the original HN website - https://news.ycombinator.com - new comments show up.
- Click on the extension badge to see the list of subscribed threads, with HN original look and feel.
- See the unread comments just at the extension badge.

* This extension hasn't been tested together with other Hacker News Extensions. Make sure you uninstall other Hacker News extensions or deactivate them *

Do you want other features? You found a bug? Report here: https://github.com/binomads/hn-notification-plugin

See a GIF of how it works here: https://user-images.githubusercontent.com/84540/32239715-9b77868a-be6b-11e7-9543-4858fe292d5f.gif                    

Información Básica de la Extensión

Nombre Hacker News Comments Notifier Plugin Hacker News Comments Notifier Plugin
ID fcdogcdfbjpnhcnflhdpcdfjmmiedebo
URL Oficial https://chromewebstore.google.com/detail/hacker-news-comments-noti/fcdogcdfbjpnhcnflhdpcdfjmmiedebo
Descripción Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published
Tamaño del Archivo 30.68 KB
Cantidad de Instalaciones 16
Versión Actual 0.0.11
Última Actualización 2017-10-31
Fecha de Publicación 2017-10-31
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador https://www.binomads.com
Tipo de Pago free
Sitio Web de la Extensión https://github.com/binomads/hn-notification-plugin
URL de la Página de Ayuda https://github.com/binomads/hn-notification-plugin
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News Comments Notifier Plugin",
    "description": "Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published",
    "version": "0.0.11",
    "manifest_version": 2,
    "short_name": "Hacker News Comments Notifier",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "i.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/hn_16.png",
            "48": "icons\/hn_48.png",
            "128": "icons\/hn_128.png"
        },
        "default_title": "Hacker News Notifier",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/hn_16.png",
        "48": "icons\/hn_48.png",
        "128": "icons\/hn_128.png"
    },
    "background": {
        "scripts": [
            "b.js"
        ]
    },
    "permissions": [
        "notifications",
        "tabs",
        "https:\/\/hacker-news.firebaseio.com\/v0\/item\/*"
    ],
    "web_accessible_resources": [
        "icons\/hn_128.png"
    ]
}