GitHub with a cape

Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!

GitHub with a cape là gì?

GitHub with a cape là một tiện ích mở rộng Chrome được phát triển bởi NicoSantangelo, và tính năng chính của nó là "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!".

Ả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 with a cape

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

                        All options can be turn on and off, it includes:

- Notifications modal
- Resizeable splitted diffs
- Add collapsable diffs
- Show All / Hide All buttons
- Show the current diff name on the sticky header
- Add collapsable commits
- Toggle contributions by clicking the added/deleted stats
- Show outdated diff comments by default
- Highlights the outdated diff icon (the X) on PRs                    

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

Tên GitHub with a cape GitHub with a cape
ID ohkgmmldhbadfleajjafdeahmakbbcpi
URL Chính Thức https://chromewebstore.google.com/detail/github-with-a-cape/ohkgmmldhbadfleajjafdeahmakbbcpi
Mô tả Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!
Kích Thước Tệp 31.47 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 1.4.4
Cập Nhật Lần Cuối 2017-02-12
Ngày Phát Hành 2017-02-11
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển NicoSantangelo
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github-with-a-cape.nicosantangelo.com/
URL Trang Trợ Giúp https://github.com/NicoSantangelo/github-with-a-cape/issues
URL Trang Chính Sách Bảo Mật https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub with a cape",
    "description": "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!",
    "short_name": "Github with a cape",
    "version": "1.4.4",
    "icons": {
        "18": "icons\/18.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.github.com\/*",
                "http:\/\/www.github.com\/*",
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "configuration.js",
                "notifications.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/options.html",
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "notifications.html"
    ]
}