Gitmoji Browser Extension
The Gitmoji extension to easily search and copy gitmojis 😜
Qu'est-ce que Gitmoji Browser Extension ?
Gitmoji Browser Extension est une extension Chrome développée par johannchopin, et sa fonction principale est "The Gitmoji extension to easily search and copy gitmojis 😜".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gitmoji Browser Extension
Téléchargez les fichiers d'extension Gitmoji Browser Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Gitmoji Browser Extension |
ID | lkjogeoldakjceempbkdahkojohmbaja |
URL Officiel | https://chromewebstore.google.com/detail/gitmoji-browser-extension/lkjogeoldakjceempbkdahkojohmbaja |
Description | The Gitmoji extension to easily search and copy gitmojis 😜 |
Taille du Fichier | 84.83 KB |
Nombre d'Installations | 672 |
Version Actuelle | 1.7.1 |
Dernière Mise à Jour | 2021-12-05 |
Date de Publication | 2020-07-04 |
Évaluation | 5.00/5 Total 7 Évaluations |
Développeur | johannchopin |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/johannchopin/gitmoji-browser-extension |
URL de la Page d'Aide | https://github.com/johannchopin/gitmoji-browser-extension/issues/new/choose |
Langues Prises en Charge | 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" ] } ] } |