New Comments

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

Apa itu New Comments?

New Comments adalah ekstensi Chrome yang dikembangkan oleh Cédric Beust, dan fitur utamanya adalah "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi New Comments

Unduh file ekstensi New Comments dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama New Comments New Comments
ID jldpfbgmbdnnjdgohphppjnpadogdime
URL Resmi https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime
Deskripsi Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
Ukuran File 41 KB
Jumlah Instalasi 135
Versi Saat Ini 15
Terakhir Diperbarui 2022-09-01
Tanggal Publikasi 2016-02-12
Penilaian 3.83/5 Total 6 Penilaian
Pengembang Cédric Beust
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}