Hacker News UX
Hacker News User Experience Enhancement
Hacker News UX란 무엇입니까?
Hacker News UX은(는) https://carina.app/hnux에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hacker News User Experience Enhancement"입니다.
확장 프로그램 스크린샷
Hacker News UX 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Hacker News UX v2, enhances your experience with Hacker News. Check out the demo video, and screenshots to get a glimpse of the features! User Preferences (font-size, column, dark/classic switch) is available by hovering your username, or login, link in the bottom-left corner. 1. Auto-Load, and Columns Browse lists with auto-load, and columns, enhancing surfacing of interesting content. 2. Dynamic Reply Reply to comments in-place, and without page-refresh. 3. Explore, with Profile Pop-Up, and Columns Explore content with profile tooltips, and by opening threads, and profiles into columns, and without managing tabs, or losing progress. 4. Secure, and Private 5. History Hacker News UX v1, was featured on Mashable. http://mashable.com/2010/12/01/improve-hacker-news-ui/
확장 프로그램 기본 정보
이름 | Hacker News UX |
ID | chngbdmhgakoomomnnhfapkpbalpmhid |
공식 URL | https://chromewebstore.google.com/detail/hacker-news-ux/chngbdmhgakoomomnnhfapkpbalpmhid |
설명 | Hacker News User Experience Enhancement |
파일 크기 | 87.62 KB |
설치 횟수 | 764 |
현재 버전 | 2.0.3 |
최근 업데이트 | 2023-08-25 |
출시 날짜 | 2018-04-09 |
평점 | 4.08/5 총 24 개의 평점 |
개발자 | https://carina.app/hnux |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.0.3", "name": "Hacker News UX", "description": "Hacker News User Experience Enhancement", "web_accessible_resources": [ { "resources": [ "images\/ajax-loader-classic.gif", "images\/ajax-loader-dark.gif", "images\/ajax-loader-classic-01.gif", "images\/ajax-loader-classic-02.gif", "images\/votearrow.png", "images\/yc.png", ".\/dist\/ux.html" ], "matches": [ "https:\/\/news.ycombinator.com\/*", "http:\/\/news.ycombinator.net\/*", "http:\/\/news.ycombinator.org\/*", "http:\/\/news.ycombinator.com\/*" ] } ], "background": { "service_worker": ".\/dist\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/*", "http:\/\/news.ycombinator.net\/*", "http:\/\/news.ycombinator.org\/*", "http:\/\/news.ycombinator.com\/*" ], "css": [ ".\/dist\/style.css" ], "js": [ ".\/dist\/build.js" ], "run_at": "document_end" } ], "host_permissions": [ "https:\/\/news.ycombinator.com\/*", "http:\/\/news.ycombinator.net\/*", "http:\/\/news.ycombinator.org\/*", "http:\/\/news.ycombinator.com\/*" ], "permissions": [ "unlimitedStorage" ] } |