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 😜"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Gitmoji Browser Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}