Follow GitHub Organization

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

Cos'è Follow GitHub Organization?

Follow GitHub Organization è un'estensione di Chrome sviluppata da https://followgithub.org, e la sua funzione principale è "Follow GitHub organizations and get activities on new repositories in your feed".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Follow GitHub Organization

Scarica i file di estensione Follow GitHub Organization in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Follow GitHub Organization Follow GitHub Organization
ID nihhgppianmnaaomafdoemomnnpdnfjn
URL Ufficiale https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn
Descrizione Follow GitHub organizations and get activities on new repositories in your feed
Dimensione del File 99.17 KB
Conteggio Installazioni 55
Versione Corrente 0.0.12
Ultimo Aggiornamento 2019-08-28
Data di Pubblicazione 2019-08-28
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://followgithub.org
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}