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ファイルをダウンロード

GitHub File Tree Resizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}