Follow GitHub Organization

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

Co je Follow GitHub Organization?

Follow GitHub Organization je rozšíření Chrome vyvinuté https://followgithub.org, a jeho hlavní funkcí je „Follow GitHub organizations and get activities on new repositories in your feed“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Follow GitHub Organization

Stáhněte si soubory rozšíření Follow GitHub Organization ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Follow GitHub Organization Follow GitHub Organization
ID nihhgppianmnaaomafdoemomnnpdnfjn
Oficiální URL https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn
Popis Follow GitHub organizations and get activities on new repositories in your feed
Velikost souboru 99.17 KB
Počet instalací 55
Aktuální Verze 0.0.12
Poslední Aktualizace 2019-08-28
Datum Vydání 2019-08-28
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://followgithub.org
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}