EmojiDisplay

This extension replaces emoticon text with the Apple Emojis.

ما هو EmojiDisplay؟

EmojiDisplay هو إضافة Chrome تم تطويرها بواسطة ranjotsingh، والميزة الرئيسية لها هي "This extension replaces emoticon text with the Apple Emojis.".

تحميل ملف CRX للإضافة EmojiDisplay

قم بتنزيل ملفات الامتداد EmojiDisplay بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension replaces emoticon text with the Apple Emojis.                    

معلومات أساسية عن التمديد

الاسم EmojiDisplay EmojiDisplay
ID doomojimaojclkcipjldpmdbiedgaoop
عنوان URL الرسمي https://chrome.google.com/webstore/detail/emojidisplay/doomojimaojclkcipjldpmdbiedgaoop
الوصف This extension replaces emoticon text with the Apple Emojis.
حجم الملف 9.82 KB
عدد التثبيتات 15
النسخة الحالية 0.1
آخر تحديث 2017-11-02
تاريخ النشر 2017-11-02
تقييم 1.00/5 مجموع تقييمات 1
المطور ranjotsingh
نوع الدفع free
موقع الإضافة https://www.ranjotsingh.com
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EmojiDisplay",
    "description": "This extension replaces emoticon text with the Apple Emojis.",
    "version": "0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "script.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}