Follow for Github

Makes following repository file movements simple!

Cos'è Follow for Github?

Follow for Github è un'estensione di Chrome sviluppata da Stafford Williams, e la sua funzione principale è "Makes following repository file movements simple!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Follow for Github

Scarica i file di estensione Follow for Github in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Follow for Github Follow for Github
ID agalokjhnhheienloigiaoohgmjdpned
URL Ufficiale https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned
Descrizione Makes following repository file movements simple!
Dimensione del File 39.41 KB
Conteggio Installazioni 1,875
Versione Corrente 1.0.13
Ultimo Aggiornamento 2021-08-26
Data di Pubblicazione 2018-08-24
Valutazione 3.43/5 Totale 21 Valutazioni
Sviluppatore Stafford Williams
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/staff0rd/github-follow-extension
URL della Pagina di Aiuto https://github.com/staff0rd/github-follow-extension
URL della Pagina della Politica sulla Privacy https://staffordwilliams.com/privacy
Lingue Supportate 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
        }
    ]
}