Last active
December 9, 2024 01:48
-
-
Save angelcgar/7b236f71592dbcfed0669e6809a9ef4b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Ocultar scrollbar | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Inyectar CSS para ocultar scrollbars | |
// @author Angel | |
// @match https://www.udemy.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const style = document.createElement('style'); | |
style.textContent = ` | |
::-webkit-scrollbar { | |
width: 0; | |
height: 0; | |
} | |
`; | |
document.head.appendChild(style); | |
})(); | |
// desde la consola | |
const style = document.createElement('style'); | |
style.textContent = ` | |
::-webkit-scrollbar { | |
width: 0; | |
height: 0; | |
} | |
`; | |
document.head.appendChild(style); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment