您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hides your whatsapp session at work
// ==UserScript== // @name WhatsApp Web Boss // @name:de WhatsApp Web Boss // @namespace https://gf.qytechs.cn/en/users/8579-rarspace01 // @version 0.2 // @description Hides your whatsapp session at work // @description:de Versteckt die whatapp session auf der Arbeit // @author rarspace01 // @match https://web.whatsapp.com/ // @grant none // ==/UserScript== /*! * Dynamically changing favicons with JavaScript * Works in all A-grade browsers except Safari and Internet Explorer * Demo: http://mathiasbynens.be/demo/dynamic-favicons */ // HTML5™, baby! http://mathiasbynens.be/notes/document-head document.head = document.head || document.getElementsByTagName('head')[0]; function changeFavicon(src) { var link = document.createElement('link'), oldLink = document.getElementById('dynamic-favicon'); link.id = 'dynamic-favicon'; link.rel = 'shortcut icon'; link.href = src; if (oldLink) { document.head.removeChild(oldLink); } document.head.appendChild(link); } //function to change favicon to stackoverflow and Tabtitle to a fitting title function doTheBossStuff() { changeFavicon('https://stackoverflow.com/favicon.ico'); document.title = "How to send multiple attachments .xls files of different objects using apex"; } window.setInterval(function(){ doTheBossStuff(); }, 5000);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址