GitHub Plus

Chrome extension to make a little better use of GitHub

GitHub Plus là gì?

GitHub Plus là một tiện ích mở rộng Chrome được phát triển bởi rockwillj, và tính năng chính của nó là "Chrome extension to make a little better use of GitHub".

Ả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 GitHub Plus

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

                        Chrome extension to make a little better use of GitHub. It provides 10 and a few features for now.

## Features

1. Liquid Design
2. Ignore Whitespaces
3. Change Tab Size
4. Expand Commit Messages
5. Remove Ellipsis…
6. No Relative Time
7. Show/Hide All Comments
8. Do Not Merge WIP
9. Close Button to Left
10. Quick Quoting
11. diff/patch file

See https://github.com/rockwillj/GitHub-Plus for more information.                    

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

Tên GitHub Plus GitHub Plus
ID lndphafdikhmpgopmchckooegfnifafm
URL Chính Thức https://chromewebstore.google.com/detail/github-plus/lndphafdikhmpgopmchckooegfnifafm
Mô tả Chrome extension to make a little better use of GitHub
Kích Thước Tệp 810 KB
Số Lần Cài Đặt 2,819
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2017-02-17
Ngày Phát Hành 2017-02-16
Nhà Phát Triển rockwillj
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Plus",
    "version": "1.0.0",
    "description": "Chrome extension to make a little better use of GitHub",
    "icons": {
        "16": "image\/icon16.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "image\/icon16.png",
            "24": "image\/icon24.png",
            "32": "image\/icon32.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "js\/jquery-2.2.4.min.js",
                "js\/content.js",
                "js\/ignore-whitespace.js",
                "js\/remove-ellipsis.js",
                "js\/expand-message.js",
                "js\/show-hide-comment.js",
                "js\/not-merge-wip.js",
                "js\/no-relative-time.js",
                "js\/open-diff-patch.js",
                "js\/toolbar\/insert-quote.js"
            ],
            "css": [
                "css\/content.css",
                "css\/liquid-design.css",
                "css\/tab-size.css",
                "css\/close-button-to-left.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/ignore-whitespace-bg.js"
        ]
    },
    "homepage_url": "https:\/\/github.com\/rockwillj\/GitHub-Plus",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/github.com\/*",
        "*:\/\/gist.github.com\/*"
    ]
}