Slack channel names with no workspace name

Remove workspace name from appearing to the right of every channel name in Slack

// ==UserScript==
// @name         Slack channel names with no workspace name
// @namespace    https://app.slack.com/
// @version      0.2
// @description  Remove workspace name from appearing to the right of every channel name in Slack
// @author       Bing Chat
// @match        https://app.slack.com/*
// @match        http://app.slack.com/*
// @grant        none
// ==/UserScript==

window.addEventListener('load', function() {
    var elements = document.querySelectorAll("div[class^='c-channel_team']");
    for (var i = 0; i < elements.length; i++) {
        elements[i].parentNode.removeChild(elements[i]);
    }
}, false);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址