Skip to content

Instantly share code, notes, and snippets.

@kzelda
Created April 4, 2016 10:04
Show Gist options
  • Save kzelda/0f7a0a1193c83e9ce338a592bacf318c to your computer and use it in GitHub Desktop.
Save kzelda/0f7a0a1193c83e9ce338a592bacf318c to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name designmodo en pleine largeur
// @namespace http://tampermonkey.net/
// @version 0.1
// @description designmodo en pleine largeur
// @author You
// @match http://designmodo.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector(".sidebar-container").remove();
var mm = document.querySelector(".articles-container");
mm.style.width = "100%";
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment