HN Enhance

An extension that enhances news.ycombinator website.

ما هو HN Enhance؟

HN Enhance هو إضافة Chrome تم تطويرها بواسطة Alvaro Bernal G، والميزة الرئيسية لها هي "An extension that enhances news.ycombinator website.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة HN Enhance

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

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

                        Features:
- Displays a military rank badge alongside the username. Rank is obtained
  according to the following proportion: Karma 1:1 Seniority.
- A minimalist black theme that is easy to to the eyes.                    

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

الاسم HN Enhance HN Enhance
ID dmnbgmcilgmcmlhgjkociikeihbkbcdp
عنوان URL الرسمي https://chromewebstore.google.com/detail/hn-enhance/dmnbgmcilgmcmlhgjkociikeihbkbcdp
الوصف An extension that enhances news.ycombinator website.
حجم الملف 74.79 KB
عدد التثبيتات 93
النسخة الحالية 0.1.0
آخر تحديث 2019-04-04
تاريخ النشر 2019-04-04
تقييم 4.50/5 مجموع تقييمات 8
المطور Alvaro Bernal G
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://alvarobg.com
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HN Enhance",
    "manifest_version": 2,
    "author": "Alvaro Bernal",
    "version": "0.1.0",
    "description": "An extension that enhances news.ycombinator website.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon-128.png",
        "default_title": "HN Enhance"
    },
    "web_accessible_resources": [
        "*.woff",
        "*.svg"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "38": "icons\/icon-38.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*"
            ],
            "css": [
                "style.css",
                "ranks.css"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ]
}