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ファイルをダウンロード

Hacker News Tweak拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単に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 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"
    }
}