HackerNews Tweaks
Adds the additional /lists from HN to the top bar, and a few other tweaks
HackerNews Tweaks란 무엇입니까?
HackerNews Tweaks은(는) http://www.jasonlotito.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds the additional /lists from HN to the top bar, and a few other tweaks"입니다.
확장 프로그램 스크린샷
HackerNews Tweaks 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
HN-Tweaks does exactly that, it tweaks the Hacker News website with a few additional navigation links. The goal is simple. Provide additional features using the existing style and design of Hacker News. The new links and menu fit in with the current style and color scheme of HN. It adds a drop down menu that provides quick and easy access to different lists on Hacker News, lists that are frequently forgotten or missed by members. It also provides easy access to your saved stories, as well as your comments (via your karma). I'm also willing to add in additional features that fit with the theme and style of the Hacker News website. -- Version 1.3.3 - Updates so Twitter feature works with new HTML changes. Version 1.3.2 - Fixes display bug that added extra padding to table rows. Version 1.3.1 - Fixes a bug that made selecting text impossible in some situations. Version 1.3 - Allows you to now follow users. Highlights user names on posts and comment so you can easily find the users. Easy access to user's comments and submissions. Version 1.2 - Adds a link to hnnotify to the menu dropdown Version 1.1 - Twitter Icon added to the right of the link title text. This can be disabled in the options page of the plugin. -- Logo by position relative (CC BY-SA 3.0)
확장 프로그램 기본 정보
이름 | |
ID | dodohbmnbcomcegpkiijalaoigaphnfp |
공식 URL | https://chrome.google.com/webstore/detail/hackernews-tweaks/dodohbmnbcomcegpkiijalaoigaphnfp |
설명 | Adds the additional /lists from HN to the top bar, and a few other tweaks |
파일 크기 | 260 KB |
설치 횟수 | 10 |
현재 버전 | 1.3.3 |
최근 업데이트 | 2015-02-23 |
출시 날짜 | 2015-02-23 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | http://www.jasonlotito.com |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HackerNews Tweaks", "version": "1.3.3", "manifest_version": 2, "description": "Adds the additional \/lists from HN to the top bar, and a few other tweaks", "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "HackerNews Lists", "default_icon": "16.png", "default_popup": "credit.html" }, "permissions": [ "*:\/\/news.ycombinator.com\/*", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/news.ycombinator.com\/*" ], "js": [ "linker.js" ] } ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" } } |