CSSreloader

That allows you to reload all the CSS of any site without you have to reload the page itself.

נכון ליום 26-03-2018. ראה הגרסה האחרונה.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         CSSreloader
// @namespace    DuKaT
// @version      0.3
// @description  That allows you to reload all the CSS of any site without you have to reload the page itself.
// @author       DuKaT
// @include      http://*/*
// @include      https://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

	var CSSreloader = function() {

		function reload() {
			const reloader = 'cssReloader=' + Date.now();
			let elements = document.querySelectorAll('link[rel="stylesheet"][href]'),
				elementsLen = elements.length,
				i, element, href;
			for (i = 0; i < elementsLen; ++i) {
				element = elements[i];
				href = element.href.replace(/[\?\&]cssReloader=\d+$/, '');
				element.href = href + (href.indexOf('?') === -1 ? '?' : '&') + reloader;
			}
		}

		return { reload };

	}();

	document.addEventListener('keyup', (e) => {
		if (e.keyCode === 120) { // keyCode === 120 is F9
			CSSreloader.reload();
		}
	});

})();