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은(는) https://mihir.ch에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "✨ Add useful features and tweak a few stuff to make the HN experience better without changing the look and feel"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Refined Hacker News 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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