Follow for Github

Makes following repository file movements simple!

Follow for Github क्या है?

Follow for Github Stafford Williams द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes following repository file movements simple!"।

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

screenshot
screenshot

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

crx प्रारूप में Follow for Github एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL https://github.com/staff0rd/github-follow-extension
गोपनीयता नीति पृष्ठ URL 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
        }
    ]
}