GitHub Emoji Extension

Extends the emoji functionality when entering comments on GitHub.

GitHub Emoji Extensionคืออะไร?

GitHub Emoji Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kshida และคุณลักษณะหลักของมันคือ "Extends the emoji functionality when entering comments on GitHub."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Emoji Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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'"
    }
}