Slack Emoji Switcher

This extension allows the user to change emoji in the slack page.

Qu'est-ce que Slack Emoji Switcher ?

Slack Emoji Switcher est une extension Chrome développée par TETRA2000, et sa fonction principale est "This extension allows the user to change emoji in the slack page.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Slack Emoji Switcher

Téléchargez les fichiers d'extension Slack Emoji Switcher 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

                        Change Slack's emoji style.                    

Informations de Base sur l'Extension

Nom Slack Emoji Switcher Slack Emoji Switcher
ID pkhpifkaaibiiolelhdkhijfnkklbjoj
URL Officiel https://chromewebstore.google.com/detail/slack-emoji-switcher/pkhpifkaaibiiolelhdkhijfnkklbjoj
Description This extension allows the user to change emoji in the slack page.
Taille du Fichier 14.07 KB
Nombre d'Installations 15
Version Actuelle 1.0.1
Dernière Mise à Jour 2018-02-08
Date de Publication 2018-02-08
Développeur TETRA2000
Type de Paiement free
Site Web de l'Extension https://github.com/TETRA2000/slack-emoji-switcher
URL de la Page d'Aide https://github.com/TETRA2000/slack-emoji-switcher/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Slack Emoji Switcher",
    "description": "This extension allows the user to change emoji in the slack page.",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/*.slack.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "changeemoji.js"
            ]
        }
    ]
}