Skip to content

Instantly share code, notes, and snippets.

@angelcgar
Last active December 9, 2024 01:48
Show Gist options
  • Save angelcgar/7b236f71592dbcfed0669e6809a9ef4b to your computer and use it in GitHub Desktop.
Save angelcgar/7b236f71592dbcfed0669e6809a9ef4b to your computer and use it in GitHub Desktop.
// ==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