gitphy
Put gifs in your Github issues and pull requests without leaving the textarea
Cos'è gitphy?
gitphy è un'estensione di Chrome sviluppata da https://kevinformatics.com, e la sua funzione principale è "Put gifs in your Github issues and pull requests without leaving the textarea".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione gitphy
Scarica i file di estensione gitphy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | gitphy |
ID | kbnbfpmphfpcndlokabhemafnjhkcffc |
URL Ufficiale | https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc |
Descrizione | Put gifs in your Github issues and pull requests without leaving the textarea |
Dimensione del File | 86.94 KB |
Conteggio Installazioni | 38 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2020-10-15 |
Data di Pubblicazione | 2020-07-24 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://kevinformatics.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://kevinformatics.com/gitphy |
Lingue Supportate | 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" ] } |