Greasy Fork is available in English.

Colruyt - bredere boodschappenlijst

Maak de boodschappenlijst op de site van de Colruyt breder

// ==UserScript==
// @name Colruyt - bredere boodschappenlijst
// @namespace http://tampermonkey.net/
// @version 0.2.0
// @description Maak de boodschappenlijst op de site van de Colruyt breder
// @author Stijn Bousard | boossy
// @match https://www.colruyt.be/*
// @grant none
// ==/UserScript==
function addGlobalStyle(css) {
 var head, style;
 head = document.getElementsByTagName('head')[0];
 if (!head) { return; }
 style = document.createElement('style');
 style.type = 'text/css';
 style.innerHTML = css;
 head.appendChild(style);
}
// addGlobalStyle('.html5-video-player .video-click-tracking, .html5-video-player .video-stream { display: block; width: 100%; height: 100%; position: absolute; transform: scale(1.065, 1.185) !important; } ');
addGlobalStyle('.shopping-list { width: 480px; !important; } ');