Slack Custom Emoji Manager

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

Slack Custom Emoji Managerとは何ですか?

Slack Custom Emoji Managerはnabekou29によって開発されたChromeの拡張機能で、その主な機能は「Add the function to bulk add, remove, and download emoji to Slack.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Slack Custom Emoji Manager拡張機能のCRXファイルをダウンロード

Slack Custom Emoji Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Slack Custom Emoji Manager Slack Custom Emoji Manager
ID cgipifjpcbhdppbjjphmgkmmgbeaggpc
公式URL https://chromewebstore.google.com/detail/slack-custom-emoji-manage/cgipifjpcbhdppbjjphmgkmmgbeaggpc
説明 Add the function to bulk add, remove, and download emoji to Slack.
ファイルサイズ 112 KB
インストール数 3,194
現在のバージョン 1.3.0
最終更新日 2024-01-01
公開日 2020-05-04
評価 3.67/5 合計 6 レビュー
開発者 nabekou29
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/nabekou29/slack_custom_emoji_manager/blob/master/README.md
対応言語 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\/*"
    ]
}