GitHub File Diff

View diffs of files and directories on GitHub.

GitHub File Diff क्या है?

GitHub File Diff https://akr.am द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View diffs of files and directories on GitHub."।

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

screenshot

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

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

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

                        To use this extension, go to a file or directory in GitHub and click the **History** button. Then, click on any commit. The extension will override the click to show the diffs of only the relevant files instead of GitHub's default behavior of showing the entire commit's diff. This is especially helpful when a commit is very large and GitHub only shows a partial diff or none at all. To get the regular view, simply refresh the page.                    

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

नाम GitHub File Diff GitHub File Diff
ID lmhbkinmjbfihpkihjdhcagnigpklinh
आधिकारिक URL https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh
विवरण View diffs of files and directories on GitHub.
फ़ाइल का आकार 354 KB
स्थापना संख्या 153
वर्तमान संस्करण 1.1.9
अंतिम अपडेट 2024-02-04
प्रकाशन तिथि 2020-03-31
डेवलपर https://akr.am
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/mohd-akram/github-file-diff/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub File Diff",
    "version": "1.1.9",
    "description": "View diffs of files and directories on GitHub.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png",
        "256": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "vendor.css"
            ],
            "js": [
                "vendor.js",
                "main.js"
            ]
        }
    ]
}