GitHub Hovercard

Neat hovercards for GitHub.

Что такое GitHub Hovercard?

GitHub Hovercard - это расширение Chrome, разработанное https://justineo.github.io/github-hovercard, и его основная функция - "Neat hovercards for GitHub.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения GitHub Hovercard

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

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

                        GitHub Hovercard provides neat hovercards for GitHub.
It brings you instant access to user/repo/issue/commit information from anywhere on GitHub.                    

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

Название GitHub Hovercard GitHub Hovercard
ID mmoahbbnojgkclgceahhakhnccimnplk
Официальный URL https://chromewebstore.google.com/detail/github-hovercard/mmoahbbnojgkclgceahhakhnccimnplk
Описание Neat hovercards for GitHub.
Размер файла 121 KB
Количество установок 10,000
Текущая Версия 1.9.4
Последнее Обновление 2021-05-13
Дата публикации 2019-03-27
Рейтинг 4.68/5 Всего 41 оценок
Разработчик https://justineo.github.io/github-hovercard
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://justineo.github.io/github-hovercard/
URL страницы помощи https://github.com/Justineo/github-hovercard/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Hovercard",
    "description": "Neat hovercards for GitHub.",
    "version": "1.9.4",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "webNavigation",
        "storage",
        "https:\/\/github.com\/*"
    ],
    "optional_permissions": [
        ""
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/justineo.github.io\/*"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}