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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}