Follow for Github
Makes following repository file movements simple!
Wat is Follow for Github?
Follow for Github is een Chrome-extensie ontwikkeld door Stafford Williams, en de belangrijkste functie is "Makes following repository file movements simple!".
Extensie Screenshots
Download het CRX-bestand van de extensie Follow for Github
Download Follow for Github-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | agalokjhnhheienloigiaoohgmjdpned |
Officiële URL | https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned |
Beschrijving | Makes following repository file movements simple! |
Bestandsgrootte | 39.41 KB |
Aantal Installaties | 1,875 |
Huidige Versie | 1.0.13 |
Laatst Bijgewerkt | 2021-08-26 |
Publicatiedatum | 2018-08-24 |
Beoordeling | 3.43/5 Totaal 21 Beoordelingen |
Ontwikkelaar | Stafford Williams |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/staff0rd/github-follow-extension |
Help Pagina-URL | https://github.com/staff0rd/github-follow-extension |
URL van de Privacybeleid Pagina | https://staffordwilliams.com/privacy |
Ondersteunde Talen | 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 } ] } |