Follow for Github

Makes following repository file movements simple!

Qu'est-ce que Follow for Github ?

Follow for Github est une extension Chrome développée par Stafford Williams, et sa fonction principale est "Makes following repository file movements simple!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Follow for Github

Téléchargez les fichiers d'extension Follow for Github au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Follow for Github Follow for Github
ID agalokjhnhheienloigiaoohgmjdpned
URL Officiel https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned
Description Makes following repository file movements simple!
Taille du Fichier 39.41 KB
Nombre d'Installations 1,875
Version Actuelle 1.0.13
Dernière Mise à Jour 2021-08-26
Date de Publication 2018-08-24
Évaluation 3.43/5 Total 21 Évaluations
Développeur Stafford Williams
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/staff0rd/github-follow-extension
URL de la Page d'Aide https://github.com/staff0rd/github-follow-extension
URL de la Page de Politique de Confidentialité https://staffordwilliams.com/privacy
Langues Prises en Charge 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
        }
    ]
}