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 هو إضافة Chrome تم تطويرها بواسطة pbarnum، والميزة الرئيسية لها هي "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Git Diff Flex

قم بتنزيل ملفات الامتداد Git Diff Flex بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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
}