Make the code block language and copy button hidden to screen readers

To avoid it language and copy announced unnecessarily

目前为 2023-08-31 提交的版本。查看 最新版本

// ==UserScript==
// @name         Make the code block language and copy button hidden to screen readers
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  To avoid it 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
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(() => document.querySelectorAll(".codeHeader").forEach(div => div.setAttribute("aria-hidden", true)), 200);
    // Your code here...
})();

QingJ © 2025

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