Gitmoji Browser Extension
The Gitmoji extension to easily search and copy gitmojis 😜
Hvad er Gitmoji Browser Extension?
Gitmoji Browser Extension er en Chrome-udvidelse udviklet af johannchopin, og dens hovedfunktion er "The Gitmoji extension to easily search and copy gitmojis 😜".
Udvidelsesskærmbilleder
Download Gitmoji Browser Extension-udvidelses-CRX-fil
Download Gitmoji Browser Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Gitmoji Browser Extension |
ID | lkjogeoldakjceempbkdahkojohmbaja |
Officiel URL | https://chromewebstore.google.com/detail/gitmoji-browser-extension/lkjogeoldakjceempbkdahkojohmbaja |
Beskrivelse | The Gitmoji extension to easily search and copy gitmojis 😜 |
Filstørrelse | 84.83 KB |
Antal Installationer | 672 |
Nuværende Version | 1.7.1 |
Senest Opdateret | 2021-12-05 |
Udgivelsesdato | 2020-07-04 |
Bedømmelse | 5.00/5 Samlet 7 Bedømmelser |
Udvikler | johannchopin |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/johannchopin/gitmoji-browser-extension |
Hjælpeside-URL | https://github.com/johannchopin/gitmoji-browser-extension/issues/new/choose |
Understøttede Sprog | 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" ] } ] } |