Github - Date of creation

Display a date of creation of a repository hosted on Github

Github - Date of creation là gì?

Github - Date of creation là một tiện ích mở rộng Chrome được phát triển bởi lvarayut, và tính năng chính của nó là "Display a date of creation of a repository hosted on Github".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Github - Date of creation

Tải xuống các tệp mở rộng Github - Date of creation dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ## 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Github - Date of creation Github - Date of creation
ID dgnomofcgpdalifennakmbocjpdiafhg
URL Chính Thức https://chromewebstore.google.com/detail/github-date-of-creation/dgnomofcgpdalifennakmbocjpdiafhg
Mô tả Display a date of creation of a repository hosted on Github
Kích Thước Tệp 477 KB
Số Lần Cài Đặt 996
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2024-01-07
Ngày Phát Hành 2020-06-27
Đánh Giá 3.93/5 Tổng số 15 Đánh Giá
Nhà Phát Triển lvarayut
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lvarayut/github-date-of-creation
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}