EmojiDisplay
This extension replaces emoticon text with the Apple Emojis.
ما هو EmojiDisplay؟
EmojiDisplay هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This extension replaces emoticon text with the Apple Emojis.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة EmojiDisplay
قم بتنزيل ملفات الامتداد EmojiDisplay بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
EmojiDisplay is a Chrome extension, which replaces text versions of the emojis into images (for operating systems that do not automatically support this feature). e.g. Special characters 😀, 😁, 😂, 😃, etc. are replaced with graphics of Apple Emojis.
معلومات أساسية عن التمديد
الاسم | EmojiDisplay |
ID | gichgflklefnkeffjbefmcagecfndbjl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/emojidisplay/gichgflklefnkeffjbefmcagecfndbjl |
الوصف | This extension replaces emoticon text with the Apple Emojis. |
حجم الملف | 18.6 MB |
عدد التثبيتات | 332 |
النسخة الحالية | 0.1 |
آخر تحديث | 2018-11-19 |
تاريخ النشر | 2018-11-14 |
تقييم | 2.00/5 مجموع تقييمات 6 |
المطور | Unknown |
نوع الدفع | free |
موقع الإضافة | http://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": [ "pics\/*.png", "res.json" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |