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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hacker News Tweak एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}