New Comments

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

New Comments क्या है?

New Comments Cédric Beust द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows new comments posted on reddit and Hacker News since you last visited a comment thread."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में New Comments एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम New Comments New Comments
ID jldpfbgmbdnnjdgohphppjnpadogdime
आधिकारिक URL https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime
विवरण Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
फ़ाइल का आकार 41 KB
स्थापना संख्या 135
वर्तमान संस्करण 15
अंतिम अपडेट 2022-09-01
प्रकाशन तिथि 2016-02-12
रेटिंग 3.83/5 कुल 6 रेटिंग्स
डेवलपर Cédric Beust
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}