Slack Custom Emoji Manager

Add the function to bulk add, remove, and download emoji to Slack.

Wat is Slack Custom Emoji Manager?

Slack Custom Emoji Manager is een Chrome-extensie ontwikkeld door nabekou29, en de belangrijkste functie is "Add the function to bulk add, remove, and download emoji to Slack.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Slack Custom Emoji Manager

Download Slack Custom Emoji Manager-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Add the following features to Slack's custom emoji management page.
 - Add more emoji at once
 - Delete all emoji at once
 - Download all emoji (zip)

=== Change Log ===
・v1.2.1 - bugfix
Fixed adding and deleting emoji to work.

・v1.2.0 
Popup is released!
You can now access the emoji customization faster.                    

Basisinformatie over de Extensie

Naam Slack Custom Emoji Manager Slack Custom Emoji Manager
ID cgipifjpcbhdppbjjphmgkmmgbeaggpc
Officiële URL https://chromewebstore.google.com/detail/slack-custom-emoji-manage/cgipifjpcbhdppbjjphmgkmmgbeaggpc
Beschrijving Add the function to bulk add, remove, and download emoji to Slack.
Bestandsgrootte 112 KB
Aantal Installaties 3,194
Huidige Versie 1.3.0
Laatst Bijgewerkt 2024-01-01
Publicatiedatum 2020-05-04
Beoordeling 3.67/5 Totaal 6 Beoordelingen
Ontwikkelaar nabekou29
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/nabekou29/slack_custom_emoji_manager/blob/master/README.md
Ondersteunde Talen en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_name__",
    "short_name": "__MSG_ext_short_name__",
    "description": "__MSG_ext_desc__",
    "version": "1.3.0",
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "19": "icon24.png"
        },
        "default_title": "Slack Custom Emoji Manager",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "main.css"
            ],
            "matches": [
                "*:\/\/*.slack.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "icon128.png"
            ],
            "matches": [
                "*:\/\/*.slack.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "declarativeNetRequest"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "host_permissions": [
        "*:\/\/*.slack.com\/*",
        "*:\/\/emoji.slack-edge.com\/*"
    ]
}