hn-friends

Highlight and tag your friends on Hacker News.

Что такое hn-friends?

hn-friends - это расширение Chrome, разработанное jessejesse123, и его основная функция - "Highlight and tag your friends on Hacker News.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения hn-friends

Скачайте файлы расширений hn-friends в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Highlight and tag your friends on Hacker News.                    

Основная информация о расширении

Название hn-friends hn-friends
ID ffgfcbfgdemibfcpcfkpicfgkiojbdkn
Официальный URL https://chromewebstore.google.com/detail/hn-friends/ffgfcbfgdemibfcpcfkpicfgkiojbdkn
Описание Highlight and tag your friends on Hacker News.
Размер файла 15.83 KB
Количество установок 27
Текущая Версия 1.2
Последнее Обновление 2018-08-10
Дата публикации 2018-08-10
Рейтинг 5.00/5 Всего 2 оценок
Разработчик jessejesse123
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "hn-friends",
    "version": "1.2",
    "description": "Highlight and tag your friends on Hacker News.",
    "icons": {
        "48": "icons\/48.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "img\/tag.svg"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "src\/utils.js",
                "src\/hn-friends.js"
            ]
        },
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/user?id=*"
            ],
            "js": [
                "src\/user.js"
            ]
        }
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": {
            "48": "icons\/48.png",
            "96": "icons\/96.png"
        },
        "default_title": "HN Friends",
        "default_popup": "popup\/popup.html"
    }
}