GitHub Emoji Extension

Extends the emoji functionality when entering comments on GitHub.

GitHub Emoji Extension là gì?

GitHub Emoji Extension là một tiện ích mở rộng Chrome được phát triển bởi kshida, và tính năng chính của nó là "Extends the emoji functionality when entering comments on GitHub.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub Emoji Extension

Tải xuống các tệp mở rộng GitHub Emoji Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub Emoji Extension GitHub Emoji Extension
ID ihelcmhhldmlefeikdnpampbpbgbcgmg
URL Chính Thức https://chromewebstore.google.com/detail/github-emoji-extension/ihelcmhhldmlefeikdnpampbpbgbcgmg
Mô tả Extends the emoji functionality when entering comments on GitHub.
Kích Thước Tệp 91.35 KB
Số Lần Cài Đặt 196
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2022-11-16
Ngày Phát Hành 2021-07-13
Đánh Giá 1.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển kshida
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kshida/github-emoji-extension
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}