Github Stars

See the number of stars earned by a github repository while hovering over its link.

Что такое Github Stars?

Github Stars - это расширение Chrome, разработанное SuPythony, и его основная функция - "See the number of stars earned by a github repository while hovering over its link.".

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

screenshot
screenshot

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

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

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

                        Github Stars is an extension that allows you to view the stars earned by a Github repo as well as its languages by hovering over its link on a webpage, without needing to navigate to it. You can also enable prefetching, which allows you to view the stars instantly after hovering over the link.

It's open source and the repository and further details can be found here - https://github.com/SuPythony/Github-Stars-Extension                    

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

Название Github Stars Github Stars
ID gppcomlihamjbakpnjafgmolpieofdmm
Официальный URL https://chromewebstore.google.com/detail/github-stars/gppcomlihamjbakpnjafgmolpieofdmm
Описание See the number of stars earned by a github repository while hovering over its link.
Размер файла 19.28 KB
Количество установок 32
Текущая Версия 1.1.0
Последнее Обновление 2023-04-24
Дата публикации 2022-02-03
Рейтинг 4.00/5 Всего 2 оценок
Разработчик SuPythony
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/SuPythony/Github-Stars-Extension
URL страницы помощи https://github.com/SuPythony/Github-Stars-Extension/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Stars",
    "description": "See the number of stars earned by a github repository while hovering over its link.",
    "version": "1.1.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/16.png",
            "32": "\/icons\/32.png",
            "48": "\/icons\/48.png",
            "128": "\/icons\/128.png"
        }
    },
    "icons": {
        "16": "\/icons\/16.png",
        "32": "\/icons\/32.png",
        "48": "\/icons\/48.png",
        "128": "\/icons\/128.png"
    }
}