New Comments

Shows new comments posted on reddit and Hacker News since you last visited a comment thread.

¿Qué es New Comments?

New Comments es una extensión de Chrome desarrollada por Cédric Beust, y su función principal es "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión New Comments

Descarga archivos de extensión New Comments 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

                        This extension remembers last time you visited comment threads on reddit and Hacker News and highlights the comments that were posted since your last visit. If you turn on Chrome sync, this setting will be shared across all your browsers so you can keep track of discussions even on multiple computers.                    

Información Básica de la Extensión

Nombre New Comments New Comments
ID jldpfbgmbdnnjdgohphppjnpadogdime
URL Oficial https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime
Descripción Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
Tamaño del Archivo 41 KB
Cantidad de Instalaciones 135
Versión Actual 15
Última Actualización 2022-09-01
Fecha de Publicación 2016-02-12
Calificación 3.83/5 Total de 6 Calificaciones
Desarrollador Cédric Beust
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "15",
    "name": "New Comments",
    "description": "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.",
    "author": "Cedric Beust",
    "short_name": "NewComments",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/reddit.com\/",
        "https:\/\/reddit.com\/",
        "http:\/\/news.ycombinator.com\/",
        "https:\/\/news.ycombinator.com\/",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "NewComments.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "selector.html"
    ]
}