:emoji:

the emoji autocomplete anywhere on the internet

Что такое :emoji:?

:emoji: - это расширение Chrome, разработанное https://emojidots.xyz, и его основная функция - "the emoji autocomplete anywhere on the internet".

Снимки экрана расширения

Скачать файл CRX расширения :emoji:

Скачайте файлы расширений :emoji: в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        The emoji autocomplete anywhere on the internet.
Just type :smile: or :shrug: and the text will magically convert into an emoji or take advantage of the suggestions box.                    

Основная информация о расширении

Название :emoji: :emoji:
ID glilodakjkecbpccacpcmienbpeebpfa
Официальный URL https://chromewebstore.google.com/detail/emoji/glilodakjkecbpccacpcmienbpeebpfa
Описание the emoji autocomplete anywhere on the internet
Размер файла 157 KB
Количество установок 74
Текущая Версия 0.1.4
Последнее Обновление 2019-07-27
Дата публикации 2019-07-26
Рейтинг 2.00/5 Всего 5 оценок
Разработчик https://emojidots.xyz
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": ":emoji:",
    "version": "0.1.4",
    "manifest_version": 2,
    "description": "the emoji autocomplete anywhere on the internet",
    "homepage_url": "http:\/\/emojidots.xyz",
    "background": {
        "scripts": [
            "main\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": false,
            "js": [
                "libs\/jquery.min.js",
                "libs\/jsel.js",
                "libs\/bililiteRange.js",
                "libs\/jquery.sendkeys.js",
                "main\/emoji.js",
                "main\/pageCom.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon-48px.png",
        "default_title": ":emoji:",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon-16px.png",
        "48": "icons\/icon-48px.png",
        "128": "icons\/icon-128px.png"
    },
    "permissions": [
        "https:\/\/gist.githubusercontent.com\/gonelf\/d8ae3ccb7902b501c4a5dd625d4089da\/raw\/5eeda197ba92f8c8139e846a1225d5640077e06f\/emoji_pretty.json",
        "tabs",
        "storage"
    ]
}