Widescreen for GitHub

Toggle the width of GitHub with a click

Widescreen for GitHub là gì?

Widescreen for GitHub là một tiện ích mở rộng Chrome được phát triển bởi Søren Louv-Jansen, và tính năng chính của nó là "Toggle the width of GitHub with a click".

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

screenshot
screenshot

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

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

                        Often the lines of code on Github are too long to fit within the fixed 920px width. This extension will take full advantage of your screen and show the code in 100% width! It works for all content on Github: PRs, commits, Gists, etc.

It is easy to toggle the width on/off whenever you need it - it even comes with a nice transition.

Bugs: https://github.com/sqren/github-widescreen/issues
Fork: https://github.com/sqren/github-widescreen                    

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

Tên Widescreen for GitHub Widescreen for GitHub
ID elikdceclccjilahimjfceoalhdbndan
URL Chính Thức https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan
Mô tả Toggle the width of GitHub with a click
Kích Thước Tệp 1.94 MB
Số Lần Cài Đặt 2,604
Phiên Bản Hiện Tại 0.7.5
Cập Nhật Lần Cuối 2020-11-10
Ngày Phát Hành 2020-07-02
Đánh Giá 4.21/5 Tổng số 24 Đánh Giá
Nhà Phát Triển Søren Louv-Jansen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sqren/github-widescreen
URL Trang Trợ Giúp https://github.com/sqren/github-widescreen
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Widescreen for GitHub",
    "short_name": "Widescreen for Github",
    "description": "Toggle the width of GitHub with a click",
    "version": "0.7.5",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        }
    },
    "background": {
        "scripts": [
            "background-scripts.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "content-scripts.js"
            ],
            "css": [
                "content-styles.css"
            ]
        }
    ]
}