Follow for Github

Makes following repository file movements simple!

Co je Follow for Github?

Follow for Github je rozšíření Chrome vyvinuté Stafford Williams, a jeho hlavní funkcí je „Makes following repository file movements simple!“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Follow for Github

Stáhněte si soubory rozšíření Follow for Github ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Follow for Github Follow for Github
ID agalokjhnhheienloigiaoohgmjdpned
Oficiální URL https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned
Popis Makes following repository file movements simple!
Velikost souboru 39.41 KB
Počet instalací 1,875
Aktuální Verze 1.0.13
Poslední Aktualizace 2021-08-26
Datum Vydání 2018-08-24
Hodnocení 3.43/5 Celkem 21 Hodnocení
Vývojář Stafford Williams
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/staff0rd/github-follow-extension
URL Stránky Nápovědy https://github.com/staff0rd/github-follow-extension
URL Stránky Zásad Ochrany Soukromí https://staffordwilliams.com/privacy
Podporované Jazyky 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
        }
    ]
}