CSSreloader

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

当前为 2018-03-26 提交的版本,查看 最新版本

// ==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();
		}
	});

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址