Greasy Fork is available in English.

MaterialUI.co Color Picker Remove Footer and Sidebar

MaterialUI.co Color Picker Remove Footer and Sidebar - clean up

Verzia zo dňa 07.07.2015. Pozri najnovšiu verziu.

// ==UserScript==
// @name        MaterialUI.co Color Picker Remove Footer and Sidebar
// @namespace   english
// @description MaterialUI.co Color Picker Remove Footer and Sidebar  - clean up
// @include     http*://*materialui.co/colors*
// @version     1.2
// @run-at document-start
// @grant       GM_addStyle
// ==/UserScript==


// Main - CSS hides two classes - video add box, and call to action box under it. - also social media

 
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '     .container {bottom: 0;} footer,.pallete_toggle{display:none;}     ';
document.getElementsByTagName('head')[0].appendChild(style);