Hacker News +

Stylish Hacker News.

Hacker News +란 무엇입니까?

Hacker News +은(는) Jarques에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stylish Hacker News."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        With the recent changes to Google's applications, I thought it'd be nice to get Hacker News to fit in nicely.

Any questions / comments contact me on Twitter: @jarques

Update in v2.0:

* Update to manifest v3
* Dark mode switcher
* Remove hot key support
* Improved commenting layouts                    

확장 프로그램 기본 정보

이름 Hacker News + Hacker News +
ID oieefcckcbbgniifdhhialgkmghahjgl
공식 URL https://chromewebstore.google.com/detail/hacker-news-+/oieefcckcbbgniifdhhialgkmghahjgl
설명 Stylish Hacker News.
파일 크기 456 KB
설치 횟수 191
현재 버전 2.0
최근 업데이트 2023-05-28
출시 날짜 2013-08-02
평점 4.38/5 총 26 개의 평점
개발자 Jarques
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://jarqu.es/dev/HN+/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hacker News +",
    "version": "2.0",
    "description": "Stylish Hacker News.",
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "style.css"
            ],
            "js": [
                "js\/hn.js"
            ],
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/fonts\/*.ttf"
            ],
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}