Gitmoji Browser Extension

The Gitmoji extension to easily search and copy gitmojis 😜

Wat is Gitmoji Browser Extension?

Gitmoji Browser Extension is een Chrome-extensie ontwikkeld door johannchopin, en de belangrijkste functie is "The Gitmoji extension to easily search and copy gitmojis 😜".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Gitmoji Browser Extension

Download Gitmoji Browser Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Gitmoji Browser Extension Gitmoji Browser Extension
ID lkjogeoldakjceempbkdahkojohmbaja
Officiële URL https://chromewebstore.google.com/detail/gitmoji-browser-extension/lkjogeoldakjceempbkdahkojohmbaja
Beschrijving The Gitmoji extension to easily search and copy gitmojis 😜
Bestandsgrootte 84.83 KB
Aantal Installaties 672
Huidige Versie 1.7.1
Laatst Bijgewerkt 2021-12-05
Publicatiedatum 2020-07-04
Beoordeling 5.00/5 Totaal 7 Beoordelingen
Ontwikkelaar johannchopin
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/johannchopin/gitmoji-browser-extension
Help Pagina-URL https://github.com/johannchopin/gitmoji-browser-extension/issues/new/choose
Ondersteunde Talen 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"
            ]
        }
    ]
}