officetimeline

try to take over the world!

// ==UserScript==
// @name         officetimeline
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  try to take over the world!
// @author       You
// @match        https://online.officetimeline.com/*
// @icon         https://www.officetimeline.com/favicon.ico
// @grant        none
// @license      none
// ==/UserScript==

(function() {
    'use strict';
    // Your code here...
    var css=".watermark-group{ display:none; }"
    var node = document.createElement("style");
	node.type = "text/css";
	node.appendChild(document.createTextNode(css));
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		heads[0].appendChild(node);
	} else {
		document.documentElement.appendChild(node);
	}
})();

QingJ © 2025

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