Follow GitHub Organization

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

Co to jest Follow GitHub Organization?

Follow GitHub Organization to rozszerzenie Chrome opracowane przez https://followgithub.org, a jego główną funkcją jest „Follow GitHub organizations and get activities on new repositories in your feed”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Follow GitHub Organization

Pobierz pliki rozszerzeń Follow GitHub Organization w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Follow GitHub Organization Follow GitHub Organization
ID nihhgppianmnaaomafdoemomnnpdnfjn
Oficjalny URL https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn
Opis Follow GitHub organizations and get activities on new repositories in your feed
Rozmiar pliku 99.17 KB
Liczba instalacji 55
Aktualna Wersja 0.0.12
Ostatnia Aktualizacja 2019-08-28
Data Publikacji 2019-08-28
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://followgithub.org
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}