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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}