Forum Discussion
ALH
May 22, 2025Brass Contributor
Painful behavior of "slash" ("/") in chat prompts
I know about the /commands (/reset, /help, ...) in Copilot powered applications where hitting "/" triggers auto-completion suggestions. Here we are talking about Copilot chat (Teams or Web app for i...
recotmp12321
Mar 16, 2026Copper Contributor
I created a t@mpermonkey script to remove this bloatware. It only works for """https://m365.cloud.microsoft"""
// ==UserScript==
// Name Copilot Remove slash Menu
// @match https://m365.cloud.microsoft/*
// @run-at document-idle
// ==/UserScript==
setTimeout(() => {
document.querySelectorAll('.fai-GroundingMenu')
.forEach(e => e.remove());
}, 8000);
// the slash menu has: class=fai-GroundingMenu ___2auuuu0 fv69c35 f14rr82x f13eamv f1ewtqcl f3bhgqh f1p9o1ba f13qh94s f1n3xztl f1y3r5vj f1c2z91y fxugw4r f1hc5s0a f9ss8wx fkrtivx f88004
// + "Add Work Content" also stops working, but "Update image and file" still works.
// By Copilot