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 |
官方網址 | 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 |
電子郵箱 | [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" ] } ] } |