Comments Owl for Hacker News

Highlight new comments, mute users, and other tweaks for Hacker News

Comments Owl for Hacker Newsคืออะไร?

Comments Owl for Hacker News เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jbscript และคุณลักษณะหลักของมันคือ "Highlight new comments, mute users, and other tweaks for Hacker News"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Comments Owl for Hacker News

ดาวน์โหลดไฟล์ส่วนขยาย Comments Owl for Hacker News ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Browser extension which makes it easer to follow comment threads on Hacker News across multiple visits, showing which items have new comments, highlighting new comments and collapsing threads without new comments. It also adds the ability to annotate and mute other users, plus other UI and UX tweaks.

Features:

List pages:

• Show new comment counts since you last viewed each item - clicking on the "X new" link will  highlight new comments and collapse comment trees which don't contain any new comments
• Prevent accidental flagging and hiding on mobile by making the "flag" and "hide" controls require confirmation, or hiding them

Item pages:

• Highlight new comments and collapse comment trees which don't contain any new comments when you revisit an item's comments - you can configure whether or not this happens automatically when you revisit
• Default comment folding controls are replaced with a Reddit-style left-aligned control, with a slightly larger hit target
• Manually highlight the X most-recent comments using the new "highlight comments" link on an item
• Mute users to hide their comments and replies to them - muted users can be managed on your own profile page
  • Logged out users get a new 'muted' link in the header they can use to manage their muted users
• Add your own notes to other users on their profile page - the first line will be displayed next to their comments
• Toggle display of "reply" links below comments to make more room for comments on the screen
• Increased distance between the upvote and downvote arrows on mobile
• Increase the contrast of submission text

Navigation:

• Hide navigation items you don't use
• Add an "upvoted" link to the header to make it easier to get back to previously visited items
• Improves mobile navigation by display links below other header contents                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Comments Owl for Hacker News Comments Owl for Hacker News
ID kpoggabejgbenjahggloahnnaolmfock
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/comments-owl-for-hacker-n/kpoggabejgbenjahggloahnnaolmfock
คำอธิบาย Highlight new comments, mute users, and other tweaks for Hacker News
ขนาดไฟล์ 45.48 KB
จำนวนการติดตั้ง 79
เวอร์ชันปัจจุบัน 2.2.0
อัปเดตครั้งล่าสุด 2023-10-20
วันที่เผยแพร่ 2019-08-17
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา jbscript
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/insin/comments-owl-for-hacker-news
URL หน้าช่วยเหลือ https://github.com/insin/comments-owl-for-hacker-news/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/insin\/comments-owl-for-hacker-news\/",
    "version": "2.2.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "browser_style": true,
        "chrome_style": false,
        "page": "options.html"
    },
    "browser_action": {
        "browser_style": true,
        "default_title": "__MSG_extensionName__",
        "default_popup": "browser_action.html"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ]
}