Hacker News Comment Highlighter

Highlights unread comments in Hacker News threads

ما هو Hacker News Comment Highlighter؟

Hacker News Comment Highlighter هو إضافة Chrome تم تطويرها بواسطة Jonathan Bergknoff، والميزة الرئيسية لها هي "Highlights unread comments in Hacker News threads".

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

screenshot

تحميل ملف CRX للإضافة Hacker News Comment Highlighter

قم بتنزيل ملفات الامتداد Hacker News Comment Highlighter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This Chrome extension keeps track of which comments you've seen in a given Hacker News thread, and then highlights the new comments when you return to the page. This is useful when you are following an active thread and just want to read what's new.

This extension is open source. The source code is available at https://github.com/jbergknoff/hn-comment-highlighter.                    

معلومات أساسية عن التمديد

الاسم Hacker News Comment Highlighter Hacker News Comment Highlighter
ID acgehogfllndeafpieloojhdmpffbjnb
عنوان URL الرسمي https://chromewebstore.google.com/detail/hacker-news-comment-highl/acgehogfllndeafpieloojhdmpffbjnb
الوصف Highlights unread comments in Hacker News threads
حجم الملف 13.14 KB
عدد التثبيتات 45
النسخة الحالية 1.0.1
آخر تحديث 2015-08-06
تاريخ النشر 2015-08-06
تقييم 5.00/5 مجموع تقييمات 1
المطور Jonathan Bergknoff
نوع الدفع free
موقع الإضافة https://github.com/jbergknoff/hn-comment-highlighter
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hacker News Comment Highlighter",
    "description": "Highlights unread comments in Hacker News threads",
    "version": "1.0.1",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/item?*"
            ],
            "js": [
                "highlighter.js"
            ],
            "css": [
                "highlighter.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}