Gitmoji Browser Extension
The Gitmoji extension to easily search and copy gitmojis 😜
Cos'è Gitmoji Browser Extension?
Gitmoji Browser Extension è un'estensione di Chrome sviluppata da johannchopin, e la sua funzione principale è "The Gitmoji extension to easily search and copy gitmojis 😜".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gitmoji Browser Extension
Scarica i file di estensione Gitmoji Browser Extension 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
This extension allow to easily search the gitmoji you want to use and then copy its shortcode or the emoji in your clipboard. Lean more about the features on https://github.com/johannchopin/gitmoji-browser-extension
Informazioni di Base sull'Estensione
Nome | Gitmoji Browser Extension |
ID | lkjogeoldakjceempbkdahkojohmbaja |
URL Ufficiale | https://chromewebstore.google.com/detail/gitmoji-browser-extension/lkjogeoldakjceempbkdahkojohmbaja |
Descrizione | The Gitmoji extension to easily search and copy gitmojis 😜 |
Dimensione del File | 84.83 KB |
Conteggio Installazioni | 672 |
Versione Corrente | 1.7.1 |
Ultimo Aggiornamento | 2021-12-05 |
Data di Pubblicazione | 2020-07-04 |
Valutazione | 5.00/5 Totale 7 Valutazioni |
Sviluppatore | johannchopin |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/johannchopin/gitmoji-browser-extension |
URL della Pagina di Aiuto | https://github.com/johannchopin/gitmoji-browser-extension/issues/new/choose |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gitmoji Browser Extension", "version": "1.7.1", "description": "The Gitmoji extension to easily search and copy gitmojis \ud83d\ude1c", "permissions": [ "activeTab", "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": "popup-icon.png" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "manifest_version": 2, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+G" }, "description": "Open the gitmoji popup" } }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/pull\/*", "https:\/\/gitlab.com\/*\/*\/-\/merge_requests\/*" ], "js": [ "injectMergeGitmoji.js" ] } ] } |