New Comments

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

ما هو New Comments؟

New Comments هو إضافة Chrome تم تطويرها بواسطة Cédric Beust، والميزة الرئيسية لها هي "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة New Comments

قم بتنزيل ملفات الامتداد New Comments بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}