Github - Date of creation

Display a date of creation of a repository hosted on Github

Github - Date of creation란 무엇입니까?

Github - Date of creation은(는) lvarayut에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display a date of creation of a repository hosted on Github"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Github - Date of creation 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ## Highlights

- Beautiful calendar icon in the summary bar on a repository page
- Customizable date format followed [Moment](https://momentjs.com/docs/#/displaying) format pattern
- Best performance by storing all fetched URIs in the Storage                    

확장 프로그램 기본 정보

이름 Github - Date of creation Github - Date of creation
ID dgnomofcgpdalifennakmbocjpdiafhg
공식 URL https://chromewebstore.google.com/detail/github-date-of-creation/dgnomofcgpdalifennakmbocjpdiafhg
설명 Display a date of creation of a repository hosted on Github
파일 크기 477 KB
설치 횟수 996
현재 버전 1.0.5
최근 업데이트 2024-01-07
출시 날짜 2020-06-27
평점 3.93/5 총 15 개의 평점
개발자 lvarayut
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lvarayut/github-date-of-creation
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github - Date of creation",
    "version": "1.0.5",
    "manifest_version": 3,
    "description": "Display a date of creation of a repository hosted on Github",
    "homepage_url": "https:\/\/github.com\/lvarayut\/github-date-of-creation",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "author": "Varayut Lerdkanlayanawat",
    "action": {
        "default_icon": "icons\/icon19.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "http:\/\/github.com\/*",
        "https:\/\/github.com\/*"
    ],
    "background": {
        "service_worker": "src\/bg\/index.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/vendors\/moment.min.js",
                "src\/constant\/index.js",
                "src\/inject\/index.js"
            ]
        }
    ],
    "options_ui": {
        "page": "src\/option\/index.html"
    }
}