GitHub Emoji Extension

Extends the emoji functionality when entering comments on GitHub.

什麼是GitHub Emoji Extension?

GitHub Emoji Extension是由kshida開發的Chrome擴展程式,該擴展的主要功能是“Extends the emoji functionality when entering comments on GitHub.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載GitHub Emoji Extension擴展crx文件

下載GitHub Emoji Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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を同時に押してください。
・スラッシュと左側のコントロールを同時に押すと、絵文字を選択するポップアップウィンドウが表示されます。
・その後、入力したい絵文字をクリックすると、カーソル位置に絵文字コードが入力されます。
・ポップアップ上部のカテゴリーアイコンをクリックすると、各カテゴリーに素早く移動します。
・ポップアップの外をクリックすると、絵文字の入力がキャンセルされ、ポップアップが閉じます。                    

擴展基本資訊

名稱 GitHub Emoji Extension GitHub Emoji Extension
ID ihelcmhhldmlefeikdnpampbpbgbcgmg
官方網址 https://chromewebstore.google.com/detail/github-emoji-extension/ihelcmhhldmlefeikdnpampbpbgbcgmg
簡介 Extends the emoji functionality when entering comments on GitHub.
檔案大小 91.35 KB
安裝次數 196
目前版本 1.3.0
更新時間 2022-11-16
上架時間 2021-07-13
評分 1.80/5 共 5 次評分
開發者 kshida
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/kshida/github-emoji-extension
支援的語言 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'"
    }
}