Star History

A chrome extension showing star history graph of current GitHub repository

Что такое Star History?

Star History - это расширение Chrome, разработанное https://star-history.com, и его основная функция - "A chrome extension showing star history graph of current GitHub repository".

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

screenshot
screenshot

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

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

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

                        Extension of https://star-history.com. When you visit a GitHub repo, this extension allows you to see its star history.                    

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

Название Star History Star History
ID iijibbcdddbhokfepbblglfgdglnccfn
Официальный URL https://chromewebstore.google.com/detail/star-history/iijibbcdddbhokfepbblglfgdglnccfn
Описание A chrome extension showing star history graph of current GitHub repository
Размер файла 785 KB
Количество установок 4,002
Текущая Версия 2.0
Последнее Обновление 2022-02-07
Дата публикации 2020-02-11
Рейтинг 4.92/5 Всего 12 оценок
Разработчик https://star-history.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/bytebase/star-history-plugin
URL страницы помощи https://github.com/bytebase/star-history-plugin/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Star History",
    "description": "A chrome extension showing star history graph of current GitHub repository",
    "homepage_url": "https:\/\/github.com\/bytebase\/star-history",
    "author": "bytebase",
    "version": "2.0",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/background.js"
    },
    "action": {
        "default_popup": ".\/extension\/popup.html"
    },
    "host_permissions": [
        "https:\/\/api.github.com\/"
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "activeTab"
    ]
}