Last active
January 26, 2026 10:46
-
-
Save plu5/f5205ffbbe418ce839c813df826c345f to your computer and use it in GitHub Desktop.
developpez.net userscript Greasemonkey pour cacher la barre latérale
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 developpez.net sans barre latérale | |
| // @namespace Violentmonkey Scripts | |
| // @match https://www.developpez.net/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author - | |
| // @description 26/01/2026, 12:00:36 | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| const style = document.createElement('style'); | |
| style.type = 'text/css'; | |
| style.innerHTML = ` | |
| .body_wrapper { | |
| width: 100% !important; | |
| padding: 0 !important; | |
| } | |
| #ano_colonne_droite { | |
| display: none !important; | |
| } | |
| /* corriger overflow */ | |
| /* mais il y a tjrs un peu d'overflow | |
| dans body_wrapper que je n'arrive pas à résoudre */ | |
| #gabarit_menu { | |
| display: flow-root !important; | |
| } | |
| #gabarit_superieur { | |
| width: 100% !important; | |
| } | |
| `; | |
| document.body.appendChild(style); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment