Follow GitHub Organization

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

Was ist Follow GitHub Organization?

Follow GitHub Organization ist eine Chrome-Erweiterung, die von https://followgithub.org entwickelt wurde, und ihr Hauptmerkmal ist "Follow GitHub organizations and get activities on new repositories in your feed".

Erweiterungsscreenshots

screenshot
screenshot

Follow GitHub Organization-Erweiterungs-CRX-Datei herunterladen

Laden Sie Follow GitHub Organization-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Follow GitHub Organization Follow GitHub Organization
ID nihhgppianmnaaomafdoemomnnpdnfjn
Offizielle URL https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn
Beschreibung Follow GitHub organizations and get activities on new repositories in your feed
Dateigröße 99.17 KB
Installationsanzahl 55
Aktuelle Version 0.0.12
Letztes Update 2019-08-28
Veröffentlichungsdatum 2019-08-28
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://followgithub.org
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}