NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name kijiji helper
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Clean up kijiji
// @author chinhodado
// @match *://www.kijiji.ca/*
// @grant none
// @run-at document-end
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var css = `div[class^='mediaUnit'] img[class^='image'] {
max-height: none !important;
max-width: none !important;
}`;
var cssElem = document.createElement("style");
cssElem.type = "text/css";
cssElem.innerHTML = css;
document.body.appendChild(cssElem);
})();