Follow GitHub Organization

Follow GitHub organizations and get activities on new repositories in your feed

Что такое Follow GitHub Organization?

Follow GitHub Organization - это расширение Chrome, разработанное https://followgithub.org, и его основная функция - "Follow GitHub organizations and get activities on new repositories in your feed".

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

screenshot
screenshot

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

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

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

                        Browser extension that lets you follow GitHub organizations like normal user accounts.
It shows the activities happening in the followed organization accounts in the main GitHub feed.

---

It's not affiliated with GitHub.                    

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

Название Follow GitHub Organization Follow GitHub Organization
ID nihhgppianmnaaomafdoemomnnpdnfjn
Официальный URL https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn
Описание Follow GitHub organizations and get activities on new repositories in your feed
Размер файла 99.17 KB
Количество установок 55
Текущая Версия 0.0.12
Последнее Обновление 2019-08-28
Дата публикации 2019-08-28
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://followgithub.org
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Follow GitHub Organization",
    "version": "0.0.12",
    "description": "Follow GitHub organizations and get activities on new repositories in your feed",
    "permissions": [
        "https:\/\/api.followgithub.org\/*",
        "storage"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": [],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/index.js"
            ],
            "run_at": "document_end"
        }
    ]
}