GitHub File Tree Resizer

A plugin to resize the file tree panel for GitHub pull requests

GitHub File Tree Resizer란 무엇입니까?

GitHub File Tree Resizer은(는) micheledichio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A plugin to resize the file tree panel for GitHub pull requests"입니다.

확장 프로그램 스크린샷

screenshot

GitHub File Tree Resizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        GitHub File Tree Resizer is a powerful plugin that enhances your GitHub pull request experience by providing you with an easy-to-use interface to resize the file tree panel. With this extension, you can adjust the size of the file tree to your preference, making it easier to navigate your pull request code changes and review feedback.

This extension is perfect for developers, software engineers, and anyone who uses GitHub regularly. Its intuitive user interface makes it easy to use, even for those who are new to browser extensions.

Key features of GitHub File Tree Resizer include:

- Adjustable file tree size: Easily resize the file tree panel to your preferred size with a few clicks.
- Simple installation: Install the extension in seconds and start using it right away.
- Works with all pull requests: The extension automatically activates on pull requests, so you can start resizing the file tree panel immediately.
- Lightweight and fast: The extension is designed to be lightweight and fast, so it won't slow down your browser.

GitHub File Tree Resizer is a must-have extension for anyone who wants to improve their GitHub pull request workflow. Try it today and see how much more productive you can be!                    

확장 프로그램 기본 정보

이름 GitHub File Tree Resizer GitHub File Tree Resizer
ID fhlpkpfgceoppigefcnejecfaebbflnp
공식 URL https://chromewebstore.google.com/detail/github-file-tree-resizer/fhlpkpfgceoppigefcnejecfaebbflnp
설명 A plugin to resize the file tree panel for GitHub pull requests
파일 크기 7.51 KB
설치 횟수 83
현재 버전 2.1
최근 업데이트 2023-04-13
출시 날짜 2023-04-13
평점 5.00/5 총 1 개의 평점
개발자 micheledichio
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub File Tree Resizer",
    "description": "A plugin to resize the file tree panel for GitHub pull requests",
    "version": "2.1",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "popup.js",
                "content.js"
            ]
        }
    ]
}