Git Up

Move Github repository's readme to the top

Что такое Git Up?

Git Up - это расширение Chrome, разработанное Aniket Kudale, и его основная функция - "Move Github repository's readme to the top".

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

screenshot

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

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

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

                        This extension moves the readme of Github Repository to the top.                    

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

Название Git Up Git Up
ID ippcncckpdiaahmmolbilefbldgibmff
Официальный URL https://chrome.google.com/webstore/detail/git-up/ippcncckpdiaahmmolbilefbldgibmff
Описание Move Github repository's readme to the top
Размер файла 10.5 KB
Количество установок 30
Текущая Версия 1.1
Последнее Обновление 2020-09-23
Дата публикации 2020-09-20
Рейтинг 1.00/5 Всего 1 оценок
Разработчик Aniket Kudale
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Up",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Move Github repository's readme to the top",
    "homepage_url": "https:\/\/www.aniket.co",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*"
    ]
}