Extra GitHub PR Info

Edits to the GitHub UI to make it more informative

Extra GitHub PR Info là gì?

Extra GitHub PR Info là một tiện ích mở rộng Chrome được phát triển bởi Meta, và tính năng chính của nó là "Edits to the GitHub UI to make it more informative".

Ả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 Extra GitHub PR Info

Tải xuống các tệp mở rộng Extra GitHub PR Info 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

                        A collection of GitHub quality of life improvements:

See https://github.com/driazati/github-extension for details                    

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

Tên Extra GitHub PR Info Extra GitHub PR Info
ID pianlbphbcjkcghlboepagpoilanigff
URL Chính Thức https://chromewebstore.google.com/detail/extra-github-pr-info/pianlbphbcjkcghlboepagpoilanigff
Mô tả Edits to the GitHub UI to make it more informative
Kích Thước Tệp 38.37 KB
Số Lần Cài Đặt 231
Phiên Bản Hiện Tại 1.8.3
Cập Nhật Lần Cuối 2021-09-30
Ngày Phát Hành 2020-03-11
Nhà Phát Triển Meta
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/driazati/github-extension
URL Trang Trợ Giúp https://github.com/driazati/github-extension
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extra GitHub PR Info",
    "short_name": "Extra GitHub PR Info",
    "description": "Edits to the GitHub UI to make it more informative",
    "version": "1.8.3",
    "author": "pytorch",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/pulls*",
                "*:\/\/github.com\/pulls*"
            ],
            "js": [
                "lib.js",
                "show_build_status.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "disable_pjax.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/pull\/*",
                "*:\/\/github.com\/*\/*",
                "*:\/\/github.com\/*\/*\/commits\/*"
            ],
            "js": [
                "lib.js",
                "unminimize_comments.js",
                "sort_signals.js",
                "remove_timeline_events.js",
                "expand_signals_box.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/pull\/*\/files"
            ],
            "js": [
                "lib.js",
                "reorder_code_reviews.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "remove_cors.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "https:\/\/github.com\/*"
    ]
}