Gitmoji Browser Extension

The Gitmoji extension to easily search and copy gitmojis 😜

Gitmoji Browser Extensionคืออะไร?

Gitmoji Browser Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย johannchopin และคุณลักษณะหลักของมันคือ "The Gitmoji extension to easily search and copy gitmojis 😜"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gitmoji Browser Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
            ]
        }
    ]
}