Git Up

Move Github repository's readme to the top

Git Up là gì?

Git Up là một tiện ích mở rộng Chrome được phát triển bởi Aniket Kudale, và tính năng chính của nó là "Move Github repository's readme to the top".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Git Up

Tải xuống các tệp mở rộng Git Up 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

                        This extension moves the readme of Github Repository to the top.                    

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

Tên Git Up Git Up
ID ippcncckpdiaahmmolbilefbldgibmff
URL Chính Thức https://chrome.google.com/webstore/detail/git-up/ippcncckpdiaahmmolbilefbldgibmff
Mô tả Move Github repository's readme to the top
Kích Thước Tệp 10.5 KB
Số Lần Cài Đặt 30
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2020-09-23
Ngày Phát Hành 2020-09-20
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Aniket Kudale
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Up",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Move Github repository's readme to the top",
    "homepage_url": "https:\/\/www.aniket.co",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*"
    ]
}