Skip to content

Instantly share code, notes, and snippets.

@plu5
Last active January 26, 2026 10:46
Show Gist options
  • Select an option

  • Save plu5/f5205ffbbe418ce839c813df826c345f to your computer and use it in GitHub Desktop.

Select an option

Save plu5/f5205ffbbe418ce839c813df826c345f to your computer and use it in GitHub Desktop.
developpez.net userscript Greasemonkey pour cacher la barre latérale
// ==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