Repo creation date checker for Github

Check creation date and last updated date of repo's on Github.

O que é Repo creation date checker for Github?

Repo creation date checker for Github é uma extensão do Chrome desenvolvida por http://github.com/NeekSandhu, e sua principal característica é "Check creation date and last updated date of repo's on Github.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Repo creation date checker for Github

Baixe arquivos de extensão Repo creation date checker for Github 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

                        Ever wondered how long a project has been around? OR you quickly want to know when it was last updated. This simple extension  adds two additional labels in the repo details bar, one for when the repo was created and the other for when it was last updated!!

Source code/Contribution https://github.com/NeekSandhu/Repo-creation-date-checker-for-Github                    

Informações Básicas da Extensão

Nome Repo creation date checker for Github Repo creation date checker for Github
ID gmfnjoaiijannkmjppchbknjdghpmleg
URL Oficial https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg
Descrição Check creation date and last updated date of repo's on Github.
Tamanho do Arquivo 97.66 KB
Contagem de Instalações 250
Versão Atual 1.1.0
Última Atualização 2018-01-12
Data de Publicação 2018-01-12
Classificação 2.67/5 Total de 3 Avaliações
Desenvolvedor http://github.com/NeekSandhu
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Repo creation date checker for Github",
    "version": "1.1.0",
    "description": "Check creation date and last updated date of repo's on Github.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "author": "http:\/\/github.com\/NeekSandhu",
    "background": {
        "scripts": [
            "src\/js\/bg.js"
        ],
        "persistent": true
    },
    "homepage_url": "http:\/\/github.com\/NeekSandhu",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/js\/injected.js"
            ],
            "css": [
                "src\/css\/main.css"
            ],
            "run_at": "document_start"
        }
    ]
}