Github Vanced

An ultimate chrome extension to customize and streamline your GitHub experience!

Github Vanced là gì?

Github Vanced là một tiện ích mở rộng Chrome được phát triển bởi bhumijgupta, và tính năng chính của nó là "An ultimate chrome extension to customize and streamline your GitHub experience!".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        An ultimate chrome extension to customize and streamline your GitHub experience with a lifetime promise of no ads and no data collection
Features -
1. Website wide dark mode
2. Colors contribution chart to avoid distraction
3. Easy toggle switches to enable and disable features                    

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

Tên Github Vanced Github Vanced
ID apidmenkobkfjiffjmapgjdapmpaneck
URL Chính Thức https://chrome.google.com/webstore/detail/github-vanced/apidmenkobkfjiffjmapgjdapmpaneck
Mô tả An ultimate chrome extension to customize and streamline your GitHub experience!
Kích Thước Tệp 57.45 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 0.8.4
Cập Nhật Lần Cuối 2019-07-12
Ngày Phát Hành 2019-07-12
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển bhumijgupta
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bhumijgupta/Github-vanced
URL Trang Trợ Giúp https://github.com/bhumijgupta/Github-vanced/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Vanced",
    "description": "An ultimate chrome extension to customize and streamline your GitHub experience!",
    "version": "0.8.4",
    "author": "Bhumij Gupta",
    "icons": {
        "16": "assets\/icon_16.png",
        "32": "assets\/icon_32.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "colorify.js",
                "darktheme.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "popup.html",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}