gitphy
Put gifs in your Github issues and pull requests without leaving the textarea
¿Qué es gitphy?
gitphy es una extensión de Chrome desarrollada por https://kevinformatics.com, y su función principal es "Put gifs in your Github issues and pull requests without leaving the textarea".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión gitphy
Descarga archivos de extensión gitphy 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
Extends the markdown image syntax by allowing you to search for gifs right from Github textareas. Use the syntax ![](gif:) to search Giphy for gifs. Open source at: https://github.com/kevinwuhoo/gitphy.
Información Básica de la Extensión
Nombre | gitphy |
ID | kbnbfpmphfpcndlokabhemafnjhkcffc |
URL Oficial | https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc |
Descripción | Put gifs in your Github issues and pull requests without leaving the textarea |
Tamaño del Archivo | 86.94 KB |
Cantidad de Instalaciones | 38 |
Versión Actual | 1.1.1 |
Última Actualización | 2020-10-15 |
Fecha de Publicación | 2020-07-24 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | https://kevinformatics.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://kevinformatics.com/gitphy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "gitphy", "version": "1.1.1", "manifest_version": 2, "description": "Put gifs in your Github issues and pull requests without leaving the textarea", "author": "Kevin Wu", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "index.css" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/github.com\/*", "https:\/\/*.giphy.com\/*" ], "web_accessible_resources": [ "giphy-attribution.png" ] } |