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"
    }
}