New Comments

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

Wat is New Comments?

New Comments is een Chrome-extensie ontwikkeld door Cédric Beust, en de belangrijkste functie is "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie New Comments

Download New Comments-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam New Comments New Comments
ID jldpfbgmbdnnjdgohphppjnpadogdime
Officiële URL https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime
Beschrijving Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
Bestandsgrootte 41 KB
Aantal Installaties 135
Huidige Versie 15
Laatst Bijgewerkt 2022-09-01
Publicatiedatum 2016-02-12
Beoordeling 3.83/5 Totaal 6 Beoordelingen
Ontwikkelaar Cédric Beust
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}