// ==UserScript== // @name Make the code block language and copy button hidden to screen readers // @namespace http://tampermonkey.net/ // @version 1.0.1 // @description To avoid language and copy announced unnecessarily // @author chekwei // @license MIT // @match https://learn.microsoft.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=microsoft.com // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(() => document.querySelectorAll(".codeHeader").forEach(div => div.setAttribute("aria-hidden", true)), 200); // Your code here... })();