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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة Hacker News Tweak

قم بتنزيل ملفات الامتداد Hacker News Tweak بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}