Git Time Machine

Time machine for files on github

Git Time Machine क्या है?

Git Time Machine Patrick Moody द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Time machine for files on github"।

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

screenshot

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

crx प्रारूप में Git Time Machine एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}