Gitmoji Browser Extension
The Gitmoji extension to easily search and copy gitmojis 😜
What is Gitmoji Browser Extension?
Gitmoji Browser Extension is a Chrome extension developed by johannchopin, and its main feature is "The Gitmoji extension to easily search and copy gitmojis 😜".
Extension Screenshots
Download Gitmoji Browser Extension Extension CRX File
Download Gitmoji Browser Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Gitmoji Browser Extension |
ID | lkjogeoldakjceempbkdahkojohmbaja |
Official URL | https://chromewebstore.google.com/detail/gitmoji-browser-extension/lkjogeoldakjceempbkdahkojohmbaja |
Description | The Gitmoji extension to easily search and copy gitmojis 😜 |
File Size | 84.83 KB |
Installation Count | 672 |
Current Version | 1.7.1 |
Last Updated | 2021-12-05 |
Publish Date | 2020-07-04 |
Rating | 5.00/5 Total 7 Ratings |
Developer | johannchopin |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/johannchopin/gitmoji-browser-extension |
Help Page URL | https://github.com/johannchopin/gitmoji-browser-extension/issues/new/choose |
Supported Languages | 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" ] } ] } |