您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
浏览器桌面小可爱,在浏览器桌面增加一只小可爱,算是娱乐吧
// ==UserScript== // @name 浏览器桌面小可爱 // @namespace http://tampermonkey.net/ // @icon https://img-blog.csdnimg.cn/20181221195058594.gif // @version 0.1 // @description 浏览器桌面小可爱,在浏览器桌面增加一只小可爱,算是娱乐吧 // @author wll // @match *://*/* // @grant none // ==/UserScript== (function() { 'use strict'; function init(){ //let imgs = <img alt="" src="http://www.gxjss.cn/zb_users/plugin/cangying/1.gif" style="width:80px;height:80px;position:fixed;left:200px;top:200px;z-index:100;">; let imgs=document.createElement("img"); imgs.src='http://www.gxjss.cn/zb_users/plugin/cangying/1.gif'; imgs.style='width:80px;height:80px;position:fixed;left:200px;top:200px;z-index:100;'; document.body.appendChild(imgs); } init(); })();