GitHub Emoji Extension

Extends the emoji functionality when entering comments on GitHub.

Co to jest GitHub Emoji Extension?

GitHub Emoji Extension to rozszerzenie Chrome opracowane przez kshida, a jego główną funkcją jest „Extends the emoji functionality when entering comments on GitHub.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia GitHub Emoji Extension

Pobierz pliki rozszerzeń GitHub Emoji Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Description(日本語の説明は下の方にあります)

This is an extension used for commenting on GitHub!
It makes your emoji input easier.
You can see a list of emoji in a popup window, so you can use a variety of emoji.
The appearance of the popup will change according to your GitHub theme settings!
For example, if you are using GitHub in dark mode, the popup will also look black.
Please check the screenshot for an image of the popup that appears.
Use emoji to make your daily communication more expressive!

How to use
・Press the control and slash at the same time on your keyboard in the GitHub comment box.
・If you press the slash and left side control at the same time, a popup window for selecting emoji will appear.
・Then, just click on the emoji you want to enter, and the emoji code will be entered at the cursor position.
・Click on the category icon at the top of the popup to quickly navigate to the respective category.
・Clicking outside the popup will cancel the emoji input and close the popup.

説明
GitHubでのコメント入力時に、簡単に絵文字を使うことができる拡張機能です。

ポップアップで絵文字の一覧が表示されるので、いろいろな絵文字を使うことができます!

ポップアップの見た目は、GitHubのテーマ設定によって変わります。
例えば、GitHubをダークモードで使用している場合は、ポップアップも黒く表示されます。
表示されるポップアップのイメージは、スクリーンショットでご確認ください。

絵文字を使って、日々のコミュニケーションをより豊かなものにしましょう!

使用方法
・GitHubのコメント欄で、キーボードのcontrol(左側のキー)とslashを同時に押してください。
・スラッシュと左側のコントロールを同時に押すと、絵文字を選択するポップアップウィンドウが表示されます。
・その後、入力したい絵文字をクリックすると、カーソル位置に絵文字コードが入力されます。
・ポップアップ上部のカテゴリーアイコンをクリックすると、各カテゴリーに素早く移動します。
・ポップアップの外をクリックすると、絵文字の入力がキャンセルされ、ポップアップが閉じます。                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Emoji Extension GitHub Emoji Extension
ID ihelcmhhldmlefeikdnpampbpbgbcgmg
Oficjalny URL https://chromewebstore.google.com/detail/github-emoji-extension/ihelcmhhldmlefeikdnpampbpbgbcgmg
Opis Extends the emoji functionality when entering comments on GitHub.
Rozmiar pliku 91.35 KB
Liczba instalacji 196
Aktualna Wersja 1.3.0
Ostatnia Aktualizacja 2022-11-16
Data Publikacji 2021-07-13
Ocena 1.80/5 Łącznie 5 Oceny
Deweloper kshida
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/kshida/github-emoji-extension
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.3.0",
    "short_name": "GitHubEE",
    "name": "GitHub Emoji Extension",
    "description": "Extends the emoji functionality when entering comments on GitHub.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}