Git Time Machine

Time machine for files on github

ما هو Git Time Machine؟

Git Time Machine هو إضافة Chrome تم تطويرها بواسطة Patrick Moody، والميزة الرئيسية لها هي "Time machine for files on github".

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

screenshot

تحميل ملف CRX للإضافة Git Time Machine

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

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

                        Add a "time machine" button to GitHub file page that lets you view the history of a single file. Click to go back and forward through commits and easily visualize how the code is modified through time.                    

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

الاسم Git Time Machine Git Time Machine
ID cbkeilfjfgflmjhohjkcecfbfbimpmkp
عنوان URL الرسمي https://chrome.google.com/webstore/detail/git-time-machine/cbkeilfjfgflmjhohjkcecfbfbimpmkp
الوصف Time machine for files on github
حجم الملف 119 KB
عدد التثبيتات 136
النسخة الحالية 1.2
آخر تحديث 2015-11-12
تاريخ النشر 2015-11-12
تقييم 4.83/5 مجموع تقييمات 6
المطور Patrick Moody
نوع الدفع free
موقع الإضافة http://www.gittimemachine.com/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Time Machine",
    "version": "1.2",
    "description": "Time machine for files on github",
    "author": "Patrick Moody",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "css": [
                "time_machine_button.css"
            ],
            "js": [
                "time_machine_button.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "galaxy_button.png"
    ]
}