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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A plugin to resize the file tree panel for GitHub pull requests"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GitHub File Tree Resizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}