Slack Emoji Uploader

Add emojis to slack!

What is Slack Emoji Uploader?

Slack Emoji Uploader is a Chrome extension developed by Juan Gonzalez, and its main feature is "Add emojis to slack!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Slack Emoji Uploader Extension CRX File

Download Slack Emoji Uploader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Add ANY image on the internet as a slack emoji!

Just right click on an image, select "Add as an emoji to slack", give your emoji a name, and your done!

Easy as that :)

Source Code: https://github.com/juanrgon/slack-emoji-uploader                    

Extension Basic Information

Name Slack Emoji Uploader Slack Emoji Uploader
ID jfacjbibcobdehekkieokkloinlfdomg
Official URL https://chromewebstore.google.com/detail/slack-emoji-uploader/jfacjbibcobdehekkieokkloinlfdomg
Description Add emojis to slack!
File Size 726 KB
Installation Count 4,896
Current Version 1.3.7
Last Updated 2019-04-02
Publish Date 2019-04-02
Rating 3.78/5 Total 18 Ratings
Developer Juan Gonzalez
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "description": "Add emojis to slack!",
    "icons": {
        "16": "icons\/16.png",
        "24": "icons\/24.png",
        "32": "icons\/32.png",
        "124": "icons\/124.png",
        "128": "icons\/128.png"
    },
    "offline_enabled": false,
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.slackmojis.com\/*"
            ],
            "js": [
                "slackmojis.js"
            ]
        }
    ],
    "manifest_version": 2,
    "name": "Slack Emoji Uploader",
    "permissions": [
        "contextMenus",
        "storage",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "version": "1.3.7",
    "minimum_chrome_version": "50.0.0.0"
}