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文件

下載Github - Date of creation擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ## 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
官方網址 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"
    }
}