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은(는) http://github.com/NeekSandhu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check creation date and last updated date of repo's on Github."입니다.

확장 프로그램 스크린샷

screenshot

Repo creation date checker for Github 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}