HN Unread Comments
Shows unread comments on Hacker News (http://news.ycombinator.com/)
HN Unread Commentsคืออะไร?
HN Unread Comments เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jan Hančič และคุณลักษณะหลักของมันคือ "Shows unread comments on Hacker News (http://news.ycombinator.com/)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HN Unread Comments
ดาวน์โหลดไฟล์ส่วนขยาย HN Unread Comments ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will keep track of comments you read on Hacker News and then show you which ones are new (it works on the "threads" page and on a individual item). v1.3.0 changes so that the border on unread comments is only visible on the left, and is now 2px thick v1.2 fixes the extension so that it now works on HN again. v1.1 fixes some issues with detecting comments. It now uses a different way to track read comments, and should be more reliable. Leave comments if you find any bugs. Source code is freely available on GitHub: http://github.com/janhancic/hn-unread-comments
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | HN Unread Comments |
ID | fpndmkcfggkffpablcooicmihgcgalil |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hn-unread-comments/fpndmkcfggkffpablcooicmihgcgalil |
คำอธิบาย | Shows unread comments on Hacker News (http://news.ycombinator.com/) |
ขนาดไฟล์ | 44.29 KB |
จำนวนการติดตั้ง | 20 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2013-10-26 |
วันที่เผยแพร่ | 2013-10-26 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Jan Hančič |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://hancic.info/hn-unread-comments |
URL หน้าช่วยเหลือ | http://github.com/janhancic/hn-unread-comments/issues |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HN Unread Comments", "short_name": "HN Unread Comments", "manifest_version": 2, "version": "1.3", "description": "Shows unread comments on Hacker News (http:\/\/news.ycombinator.com\/)", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/item?id=*", "https:\/\/news.ycombinator.com\/threads?id=*" ], "js": [ "lib\/jquery.js", "lib\/phpjs.js", "lib\/storage_object.js", "src\/hn_unread_comments.js" ] } ], "permissions": [ "unlimitedStorage" ] } |