Skip to content

Instantly share code, notes, and snippets.

@lzilioli
Created March 23, 2025 18:28
Show Gist options
  • Save lzilioli/4031bc677b1456b6bea0de25f0882177 to your computer and use it in GitHub Desktop.
Save lzilioli/4031bc677b1456b6bea0de25f0882177 to your computer and use it in GitHub Desktop.
TypingMind Plugin to Hide Teams Tab from Sidebar
function hideTeamsTab() {
// Create the style element
const styleElement = document.createElement('style');
// Set the CSS content
styleElement.textContent = `
[data-element-id=workspace-tab-teams] {
display: none;
}
`;
// Append the style element to the document head
document.head.appendChild(styleElement);
}
// Execute the function
hideTeamsTab();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment