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 |
电子邮箱 | [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" ] } ] } |