Emoji for Chatter

See and input emoji in Chatter!

Что такое Emoji for Chatter?

Emoji for Chatter - это расширение Chrome, разработанное https://www.kylpo.com, и его основная функция - "See and input emoji in Chatter!".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Emoji for Chatter

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

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

                        << NOT BEING ACTIVELY DEVELOPED >>

This extension will replace text emojis, like :smile:, with image emojis in Salesforce's Chatter! Also, when typing a post or comment, type : and search to see what emojis are available.

For a list of all emojis, see: http://www.emoji-cheat-sheet.com/

Note: this is NOT an official Salesforce project. Salesforce is not responsible for this extension.

Permissions explanation:
"Access your data on *.salesforce.com"
- Needed to inject this functionality on a salesforce page                    

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

Название Emoji for Chatter Emoji for Chatter
ID dipcnkfbpgiehajjcohgldhjdnhpijhf
Официальный URL https://chromewebstore.google.com/detail/emoji-for-chatter/dipcnkfbpgiehajjcohgldhjdnhpijhf
Описание See and input emoji in Chatter!
Размер файла 4.07 MB
Количество установок 201
Текущая Версия 0.1.7
Последнее Обновление 2016-05-11
Дата публикации 2016-05-10
Рейтинг 2.58/5 Всего 12 оценок
Разработчик https://www.kylpo.com
Тип оплаты free
Официальный сайт расширения https://github.com/kylpo/emoji-for-chatter
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Emoji for Chatter",
    "description": "See and input emoji in Chatter!",
    "version": "0.1.7",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "libs\/jquery.min.js",
                "libs\/jquery.caret.min.js",
                "libs\/jquery.atwho.min.js",
                "libs\/emojify.js",
                "content.js"
            ],
            "css": [
                "libs\/jquery.atwho.min.css",
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/emoji\/*.png",
        "libs\/jquery.min.map"
    ],
    "manifest_version": 2
}