Follow for Github

Makes following repository file movements simple!

ما هو Follow for Github؟

Follow for Github هو إضافة Chrome تم تطويرها بواسطة Stafford Williams، والميزة الرئيسية لها هي "Makes following repository file movements simple!".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Follow for Github

قم بتنزيل ملفات الامتداد Follow for Github بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Supports private repositories via Chrome Extensions > Follow for Github > Options

This extension will change the View button into Left and Right buttons on Github.com file diffs moves/renames.

Clicking the Left button will move you to the full file as it existed in its previous location in the parent commit. Clicking the Right button does what the old View button did, and moves you to the full file on the current commit.

Open source! See/contribute to the source at http://github.com/staff0rd/github-follow-extension                    

معلومات أساسية عن التمديد

الاسم Follow for Github Follow for Github
ID agalokjhnhheienloigiaoohgmjdpned
عنوان URL الرسمي https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned
الوصف Makes following repository file movements simple!
حجم الملف 39.41 KB
عدد التثبيتات 1,875
النسخة الحالية 1.0.13
آخر تحديث 2021-08-26
تاريخ النشر 2018-08-24
تقييم 3.43/5 مجموع تقييمات 21
المطور Stafford Williams
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/staff0rd/github-follow-extension
عنوان صفحة المساعدة https://github.com/staff0rd/github-follow-extension
عنوان صفحة سياسة الخصوصية https://staffordwilliams.com/privacy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.13",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "scripts\/commit.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "http:\/\/github.com\/*\/commits\/*",
                "https:\/\/github.com\/*\/commits\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "scripts\/history.js",
                "scripts\/options.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}