Git Diff Flex

Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.

Git Diff Flex क्या है?

Git Diff Flex pbarnum द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com."।

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

screenshot
screenshot

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

crx प्रारूप में Git Diff Flex एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension adds a pane bezel between a file's diff to expand or contract a side in an effort to make line more readable.                    

एक्सटेंशन की मूल जानकारी

नाम Git Diff Flex Git Diff Flex
ID deholaolbodagbifbcaghhmjlbekndec
आधिकारिक URL https://chromewebstore.google.com/detail/git-diff-flex/deholaolbodagbifbcaghhmjlbekndec
विवरण Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.
फ़ाइल का आकार 17.52 KB
स्थापना संख्या 53
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2023-06-28
प्रकाशन तिथि 2018-08-30
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर pbarnum
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/pbarnum/git-diff-flex/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Diff Flex",
    "version": "1.0.5",
    "description": "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "service_scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "css": [
                "git-diff-flex.css"
            ],
            "js": [
                "git-diff-flex.js"
            ]
        }
    ],
    "icons": {
        "128": "icon_128.png"
    },
    "action": {
        "default_title": "Git Diff Flex",
        "default_popup": "options.html"
    },
    "manifest_version": 3
}