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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи 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
    }
}