Repo creation date checker for Github

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

Что такое Repo creation date checker for Github?

Repo creation date checker for Github - это расширение Chrome, разработанное http://github.com/NeekSandhu, и его основная функция - "Check creation date and last updated date of repo's on Github.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Repo creation date checker for Github

Скачайте файлы расширений Repo creation date checker for Github в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Repo creation date checker for Github Repo creation date checker for Github
ID gmfnjoaiijannkmjppchbknjdghpmleg
Официальный URL https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg
Описание Check creation date and last updated date of repo's on Github.
Размер файла 97.66 KB
Количество установок 250
Текущая Версия 1.1.0
Последнее Обновление 2018-01-12
Дата публикации 2018-01-12
Рейтинг 2.67/5 Всего 3 оценок
Разработчик http://github.com/NeekSandhu
Тип оплаты free
Поддерживаемые языки 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"
        }
    ]
}