5 minute fork
Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com
¿Qué es 5 minute fork?
5 minute fork es una extensión de Chrome desarrollada por Remy Sharp / Left Logic, y su función principal es "Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión 5 minute fork
Descarga archivos de extensión 5 minute fork 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
5 minute fork creates a temporary clone of a github repo when the repo owner hasn't hosted their demo. This extension adds a '5 minute fork' button to github repos to quickly and easily clone. As explained on HackerNews: "If a github repo has an index.html file and you click on it, github will show you the source instead of the webpage. 5minfork shows you the webpage so that you can have an idea of what the repo is about."
Información Básica de la Extensión
Nombre | 5 minute fork |
ID | idfhgkibldeniiijlnenfhlilhbifbff |
URL Oficial | https://chromewebstore.google.com/detail/5-minute-fork/idfhgkibldeniiijlnenfhlilhbifbff |
Descripción | Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com |
Tamaño del Archivo | 95.7 KB |
Cantidad de Instalaciones | 42 |
Versión Actual | 1.0.17 |
Última Actualización | 2015-06-29 |
Fecha de Publicación | 2015-06-29 |
Calificación | 4.20/5 Total de 5 Calificaciones |
Desarrollador | Remy Sharp / Left Logic |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://5minfork.com |
URL de la Página de Política de Privacidad | https://leftlogic.com/privacy/extensions |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "5 minute fork", "version": "1.0.17", "manifest_version": 2, "homepage_url": "http:\/\/5minfork.com", "description": "Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "js": [ "inpage.js" ], "matches": [ "http:\/\/*.github.com\/*", "https:\/\/*.github.com\/*" ], "run_at": "document_end" } ] } |