GitHub Emoji Extension
Extends the emoji functionality when entering comments on GitHub.
Cos'è GitHub Emoji Extension?
GitHub Emoji Extension è un'estensione di Chrome sviluppata da kshida, e la sua funzione principale è "Extends the emoji functionality when entering comments on GitHub.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Emoji Extension
Scarica i file di estensione GitHub Emoji Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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を同時に押してください。 ・スラッシュと左側のコントロールを同時に押すと、絵文字を選択するポップアップウィンドウが表示されます。 ・その後、入力したい絵文字をクリックすると、カーソル位置に絵文字コードが入力されます。 ・ポップアップ上部のカテゴリーアイコンをクリックすると、各カテゴリーに素早く移動します。 ・ポップアップの外をクリックすると、絵文字の入力がキャンセルされ、ポップアップが閉じます。
Informazioni di Base sull'Estensione
Nome | GitHub Emoji Extension |
ID | ihelcmhhldmlefeikdnpampbpbgbcgmg |
URL Ufficiale | https://chromewebstore.google.com/detail/github-emoji-extension/ihelcmhhldmlefeikdnpampbpbgbcgmg |
Descrizione | Extends the emoji functionality when entering comments on GitHub. |
Dimensione del File | 91.35 KB |
Conteggio Installazioni | 196 |
Versione Corrente | 1.3.0 |
Ultimo Aggiornamento | 2022-11-16 |
Data di Pubblicazione | 2021-07-13 |
Valutazione | 1.80/5 Totale 5 Valutazioni |
Sviluppatore | kshida |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/kshida/github-emoji-extension |
Lingue Supportate | 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'" } } |