Hacker News Tweak

Hacker News Tweak is a chrome extension to make HN more user friendly. The extension will activate when you're on hacker news once…

Hacker News Tweak란 무엇입니까?

Hacker News Tweak은(는) lishi1608에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hacker News Tweak is a chrome extension to make HN more user friendly. The extension will activate when you're on hacker news once…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Hacker News Tweak is a chrome extension to make HN more user friendly.
The extension will activate when you're on hacker news once installed. Unlike some other apps, you don't need to goto any page, so your bookmark won't increase.

Features:

-recover the 'best' link
-Make news title bigger. Highlight points count and comments count if very many.
-Add share function by AddThis. This will simplify sharing Hacker News to Facebook, Twitter, Google Plus, weibo etc. Now be a social hacker.
-Add sort by heat function. This will make you quickly find the hottest(max pointed/commented) news in a single Hacker News page by one click.

Enjoy!                    

확장 프로그램 기본 정보

이름 Hacker News Tweak Hacker News Tweak
ID egohkpmjomkefbidmbkjiefkihenmkck
공식 URL https://chromewebstore.google.com/detail/hacker-news-tweak/egohkpmjomkefbidmbkjiefkihenmkck
설명 Hacker News Tweak is a chrome extension to make HN more user friendly. The extension will activate when you're on hacker news once…
파일 크기 59.73 KB
설치 횟수 31
현재 버전 1.1
최근 업데이트 2013-06-19
출시 날짜 2013-06-19
평점 4.75/5 총 4 개의 평점
개발자 lishi1608
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/seekerlee/Hacker-News-Tweak
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News Tweak",
    "version": "1.1",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "images\/icon22.png",
        "default_title": "Hacker News Tweak",
        "default_popup": "info.html"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "css": [
                "content_style.css"
            ],
            "js": [
                "jquery-2.0.2.min.js",
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}