Gitmoji Browser Extension

The Gitmoji extension to easily search and copy gitmojis 😜

Gitmoji Browser Extension là gì?

Gitmoji Browser Extension là một tiện ích mở rộng Chrome được phát triển bởi johannchopin, và tính năng chính của nó là "The Gitmoji extension to easily search and copy gitmojis 😜".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gitmoji Browser Extension

Tải xuống các tệp mở rộng Gitmoji Browser Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gitmoji Browser Extension Gitmoji Browser Extension
ID lkjogeoldakjceempbkdahkojohmbaja
URL Chính Thức https://chromewebstore.google.com/detail/gitmoji-browser-extension/lkjogeoldakjceempbkdahkojohmbaja
Mô tả The Gitmoji extension to easily search and copy gitmojis 😜
Kích Thước Tệp 84.83 KB
Số Lần Cài Đặt 672
Phiên Bản Hiện Tại 1.7.1
Cập Nhật Lần Cuối 2021-12-05
Ngày Phát Hành 2020-07-04
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển johannchopin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/johannchopin/gitmoji-browser-extension
URL Trang Trợ Giúp https://github.com/johannchopin/gitmoji-browser-extension/issues/new/choose
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}