Gitmoji Browser Extension
The Gitmoji extension to easily search and copy gitmojis 😜
Gitmoji Browser Extensionとは何ですか?
Gitmoji Browser Extensionはjohannchopinによって開発されたChromeの拡張機能で、その主な機能は「The Gitmoji extension to easily search and copy gitmojis 😜」です。
拡張機能のスクリーンショット
Gitmoji Browser Extension拡張機能のCRXファイルをダウンロード
Gitmoji Browser Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allow to easily search the gitmoji you want to use and then copy its shortcode or the emoji in your clipboard. Lean more about the features on https://github.com/johannchopin/gitmoji-browser-extension
拡張機能の基本情報
名前 | Gitmoji Browser Extension |
ID | lkjogeoldakjceempbkdahkojohmbaja |
公式URL | https://chromewebstore.google.com/detail/gitmoji-browser-extension/lkjogeoldakjceempbkdahkojohmbaja |
説明 | The Gitmoji extension to easily search and copy gitmojis 😜 |
ファイルサイズ | 84.83 KB |
インストール数 | 672 |
現在のバージョン | 1.7.1 |
最終更新日 | 2021-12-05 |
公開日 | 2020-07-04 |
評価 | 5.00/5 合計 7 レビュー |
開発者 | johannchopin |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/johannchopin/gitmoji-browser-extension |
ヘルプページのURL | https://github.com/johannchopin/gitmoji-browser-extension/issues/new/choose |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gitmoji Browser Extension", "version": "1.7.1", "description": "The Gitmoji extension to easily search and copy gitmojis \ud83d\ude1c", "permissions": [ "activeTab", "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": "popup-icon.png" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "manifest_version": 2, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+G" }, "description": "Open the gitmoji popup" } }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/pull\/*", "https:\/\/gitlab.com\/*\/*\/-\/merge_requests\/*" ], "js": [ "injectMergeGitmoji.js" ] } ] } |