hckr news

Add functionality to news.ycombinator.com and hckrnews.com

ما هو hckr news؟

hckr news هو إضافة Chrome تم تطويرها بواسطة https://hckrnews.com، والميزة الرئيسية لها هي "Add functionality to news.ycombinator.com and hckrnews.com".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة hckr news

قم بتنزيل ملفات الامتداد hckr news بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        The browser extension adds a few features to both Hacker News and hckr news:

* Highlight New Comments
* Identify New Comments on hckrnews.com
* Alexander Kirk's collapsible threads                    

معلومات أساسية عن التمديد

الاسم hckr news hckr news
ID mnlaodleonmmfkdhfofamacceeikgecp
عنوان URL الرسمي https://chromewebstore.google.com/detail/hckr-news/mnlaodleonmmfkdhfofamacceeikgecp
الوصف Add functionality to news.ycombinator.com and hckrnews.com
حجم الملف 52.15 KB
عدد التثبيتات 1,010
النسخة الحالية 2.0
آخر تحديث 2020-01-07
تاريخ النشر 2020-01-07
تقييم 4.59/5 مجموع تقييمات 17
المطور https://hckrnews.com
نوع الدفع free
موقع الإضافة http://hckrnews.com/about.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "hckr news",
    "version": "2.0",
    "manifest_version": 2,
    "icons": {
        "72": "hckrnews-72.png"
    },
    "description": "Add functionality to news.ycombinator.com and hckrnews.com",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background-script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/hckrnews.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "hckr_inject.js"
            ]
        },
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/item*"
            ],
            "js": [
                "browser-polyfill.js",
                "hn_inject.js",
                "jquery-1.7.1.min.js",
                "hacker_news_comment_coll.user.js"
            ]
        }
    ]
}