Refined Hacker News

✨ Add useful features and tweak a few stuff to make the HN experience better without changing the look and feel

Refined Hacker Newsคืออะไร?

Refined Hacker News เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mihir.ch และคุณลักษณะหลักของมันคือ "✨ Add useful features and tweak a few stuff to make the HN experience better without changing the look and feel"

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

screenshot
screenshot
screenshot

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

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

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

                        ✨ This is a Chrome extension that adds useful features and tweaks a few stuff on Hacker News to make the experience better... without changing the look and feel.

The minimalist design of Hacker News is best at offering news the way we like it. Yet there are a few small interface tweaks and additional features that can drastically improve our experience while browsing through items and comments which this extension implements.

Hopefully, in due course, a few of these tweaks can be implemented by Hacker News themselves. You can help too by emailing [email protected]!

Details regarding the features, such keyboard mappings can be viewed here: https://github.com/plibither8/refined-hacker-news#highlights

The extension has been inspired by Sindre Sorhus's extension "Refined GitHub".                    

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

ชื่อ Refined Hacker News Refined Hacker News
ID gcibdgjaladjjloeocimnijdgopejkfk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/refined-hacker-news/gcibdgjaladjjloeocimnijdgopejkfk
คำอธิบาย ✨ Add useful features and tweak a few stuff to make the HN experience better without changing the look and feel
ขนาดไฟล์ 83.41 KB
จำนวนการติดตั้ง 1,313
เวอร์ชันปัจจุบัน 22.12.17
อัปเดตครั้งล่าสุด 2022-12-19
วันที่เผยแพร่ 2020-05-19
คะแนน 4.88/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา https://mihir.ch
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/plibither8/refined-hacker-news
URL หน้าช่วยเหลือ https://github.com/plibither8/refined-hacker-news
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Refined Hacker News",
    "short_name": "Refined HN",
    "version": "22.12.17",
    "description": "\u2728 Add useful features and tweak a few stuff to make the HN experience better without changing the look and feel",
    "homepage_url": "https:\/\/github.com\/plibither8\/refined-hacker-news",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "history",
        "tabs",
        "*:\/\/news.ycombinator.com\/*",
        "*:\/\/hacker-news.firebaseio.com\/v0\/*",
        "*:\/\/title.mihir.ch\/*",
        "*:\/\/wayback.now.sh\/*",
        "*:\/\/hn.algolia.com\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "custom-css.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ],
            "css": [
                "refined-hacker-news.css"
            ],
            "js": [
                "browser-polyfill.min.js",
                "refined-hacker-news.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "loader.gif"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}