Last active
February 4, 2026 23:54
-
-
Save plu5/f5205ffbbe418ce839c813df826c345f to your computer and use it in GitHub Desktop.
developpez.net userscript pour cacher la barre latérale. Lien d'installation (nécessite Grease/Tamper/Violentmonkey): https://gist.githubusercontent.com/plu5/f5205ffbbe418ce839c813df826c345f/raw/devsansbarre.user.js
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.0 | |
| // @author plu5 | |
| // @homepageURL https://gist.github.com/plu5/f5205ffbbe418ce839c813df826c345f | |
| // @updateURL https://gist.githubusercontent.com/plu5/f5205ffbbe418ce839c813df826c345f/raw/devsansbarre.user.js | |
| // @downloadURL https://gist.githubusercontent.com/plu5/f5205ffbbe418ce839c813df826c345f/raw/devsansbarre.user.js | |
| // @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