Emoji Assistant

A chrome extension to autosuggest emojis while writing on the web.

Qu'est-ce que Emoji Assistant ?

Emoji Assistant est une extension Chrome développée par ritz078, et sa fonction principale est "A chrome extension to autosuggest emojis while writing on the web.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Emoji Assistant

Téléchargez les fichiers d'extension Emoji Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Automatically suggest emojis from the dropdown. Works on text input boxes, textareas and contenteditables.

If doest work try using after Command + Alt + Enter

For any kind of issues please go to https://github.com/ritz078/emoji-assistant/issues and file an issue there.                    

Informations de Base sur l'Extension

Nom Emoji Assistant Emoji Assistant
ID jmngpddmfdhocaiaaacfpgknpiaahpab
URL Officiel https://chromewebstore.google.com/detail/emoji-assistant/jmngpddmfdhocaiaaacfpgknpiaahpab
Description A chrome extension to autosuggest emojis while writing on the web.
Taille du Fichier 2.01 MB
Nombre d'Installations 149
Version Actuelle 0.3.2
Dernière Mise à Jour 2019-03-08
Date de Publication 2019-03-08
Évaluation 4.50/5 Total 2 Évaluations
Développeur ritz078
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ritz078/emoji-assistant
URL de la Page d'Aide https://github.com/ritz078/emoji-assistant/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.3.2",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "options_page": "options.html",
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/vendor\/jquery.js",
                "scripts\/vendor\/jquery.textcomplete.js",
                "scripts\/contentscript.js"
            ],
            "css": [
                "styles\/main.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "emoji-assistant"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/*.png"
    ]
}