Repo creation date checker for Github

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

Co je Repo creation date checker for Github?

Repo creation date checker for Github je rozšíření Chrome vyvinuté http://github.com/NeekSandhu, a jeho hlavní funkcí je „Check creation date and last updated date of repo's on Github.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Repo creation date checker for Github

Stáhněte si soubory rozšíření Repo creation date checker for Github ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Repo creation date checker for Github Repo creation date checker for Github
ID gmfnjoaiijannkmjppchbknjdghpmleg
Oficiální URL https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg
Popis Check creation date and last updated date of repo's on Github.
Velikost souboru 97.66 KB
Počet instalací 250
Aktuální Verze 1.1.0
Poslední Aktualizace 2018-01-12
Datum Vydání 2018-01-12
Hodnocení 2.67/5 Celkem 3 Hodnocení
Vývojář http://github.com/NeekSandhu
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}