Emojify Everything

There aren't enough emojis in your websites. This extension fixes that.

ما هو Emojify Everything؟

Emojify Everything هو إضافة Chrome تم تطويرها بواسطة jasonetco، والميزة الرئيسية لها هي "There aren't enough emojis in your websites. This extension fixes that.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Emojify Everything

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

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

                        Replaces words in the webpages you visit with the corresponding emoji. You will either absolutely love or absolutely hate this.                    

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

الاسم Emojify Everything Emojify Everything
ID hkahpmfkdfeceiiklfbkalcpbceccjco
عنوان URL الرسمي https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco
الوصف There aren't enough emojis in your websites. This extension fixes that.
حجم الملف 36.48 KB
عدد التثبيتات 39
النسخة الحالية 1.1.5
آخر تحديث 2017-03-19
تاريخ النشر 2017-03-18
تقييم 5.00/5 مجموع تقييمات 2
المطور jasonetco
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/JasonEtco/emojify-everything
عنوان صفحة المساعدة https://github.com/JasonEtco/emojify-everything/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.1.5",
    "minimum_chrome_version": "49",
    "name": "Emojify Everything",
    "short_name": "Emojification",
    "description": "There aren't enough emojis in your websites. This extension fixes that.",
    "author": "Jason Etcovitch",
    "homepage_url": "https:\/\/github.com\/JasonEtco\/emojify-everything",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Emojify Everything",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/simpleEmojis.js",
                "js\/emojis.js",
                "main.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}