My Git Repo News

Chrome extension which helps you not to miss important changes in your news thread related to your repo

Что такое My Git Repo News?

My Git Repo News - это расширение Chrome, разработанное greybax, и его основная функция - "Chrome extension which helps you not to miss important changes in your news thread related to your repo".

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

screenshot
screenshot

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

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

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

                        Don't miss any changes in your github newsfeed related with your repos!                    

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

Название My Git Repo News My Git Repo News
ID bpijgihicffjpcnjndpcdicohomlfbhp
Официальный URL https://chromewebstore.google.com/detail/my-git-repo-news/bpijgihicffjpcnjndpcdicohomlfbhp
Описание Chrome extension which helps you not to miss important changes in your news thread related to your repo
Размер файла 168 KB
Количество установок 17
Текущая Версия 1.0.2
Последнее Обновление 2018-10-01
Дата публикации 2018-10-01
Рейтинг 5.00/5 Всего 1 оценок
Разработчик greybax
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/greybax/github-extension-my-repo-news
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "My Git Repo News",
    "description": "Chrome extension which helps you not to miss important changes in your news thread related to your repo",
    "short_name": "My Git Repo News",
    "version": "1.0.2",
    "homepage_url": "https:\/\/github.com\/greybax\/github-extension-my-repo-news",
    "browser_action": {
        "default_title": "My Git Repo News",
        "default_icon": "icons\/icon-16.png"
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "js\/index.js"
            ]
        }
    ]
}