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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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