Follow GitHub Organization

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

O que é Follow GitHub Organization?

Follow GitHub Organization é uma extensão do Chrome desenvolvida por https://followgithub.org, e sua principal característica é "Follow GitHub organizations and get activities on new repositories in your feed".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Follow GitHub Organization

Baixe arquivos de extensão Follow GitHub Organization no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Follow GitHub Organization Follow GitHub Organization
ID nihhgppianmnaaomafdoemomnnpdnfjn
URL Oficial https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn
Descrição Follow GitHub organizations and get activities on new repositories in your feed
Tamanho do Arquivo 99.17 KB
Contagem de Instalações 55
Versão Atual 0.0.12
Última Atualização 2019-08-28
Data de Publicação 2019-08-28
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://followgithub.org
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}