Follow for Github
Makes following repository file movements simple!
¿Qué es Follow for Github?
Follow for Github es una extensión de Chrome desarrollada por Stafford Williams, y su función principal es "Makes following repository file movements simple!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Follow for Github
Descarga archivos de extensión Follow for Github en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | |
ID | agalokjhnhheienloigiaoohgmjdpned |
URL Oficial | https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned |
Descripción | Makes following repository file movements simple! |
Tamaño del Archivo | 39.41 KB |
Cantidad de Instalaciones | 1,875 |
Versión Actual | 1.0.13 |
Última Actualización | 2021-08-26 |
Fecha de Publicación | 2018-08-24 |
Calificación | 3.43/5 Total de 21 Calificaciones |
Desarrollador | Stafford Williams |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/staff0rd/github-follow-extension |
URL de la Página de Ayuda | https://github.com/staff0rd/github-follow-extension |
URL de la Página de Política de Privacidad | https://staffordwilliams.com/privacy |
Idiomas Soportados | 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 } ] } |