Follow GitHub Organization

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

Vad är Follow GitHub Organization?

Follow GitHub Organization är en Chrome-tillägg utvecklad av https://followgithub.org, och dess huvudfunktion är "Follow GitHub organizations and get activities on new repositories in your feed".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Follow GitHub Organization-förlängningens CRX-fil

Ladda ner Follow GitHub Organization-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Follow GitHub Organization Follow GitHub Organization
ID nihhgppianmnaaomafdoemomnnpdnfjn
Officiell webbadress https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn
Beskrivning Follow GitHub organizations and get activities on new repositories in your feed
Filstorlek 99.17 KB
Antal Installationer 55
Aktuell Version 0.0.12
Senast Uppdaterad 2019-08-28
Publiceringsdatum 2019-08-28
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://followgithub.org
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}