您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
阿斯蒂芬
// ==UserScript== // @name xiuren // @namespace http://tampermonkey.net/ // @version 0.1 // @description 阿斯蒂芬 // @author You // @license MIT // @match https://www.xrmnw.xyz/* // @icon https://www.google.com/s2/favicons?sz=64&domain=xiurenb.vip // @grant none // ==/UserScript== (function() { 'use strict'; $('body').append('<style>.content img{ width: 30%;border:none; display:inline-block}br{ display: none;}</style>'); $('<div style=" position: fixed; width: 140px; height: 140px; background: rgba(0,0,0,.5); top: 0;">1</div>') .appendTo($('body')) .hover(function(){ var url=window.location.href.replace('.html',''); var s=$(this).html(); for(var i= s;i<parseInt($(this).html())+14;i++){ $.ajax({ type: 'get',dataType: 'html',url:url+'_'+i+'.html', success: function(html){ window.bill=$(html) $(".content img").last().after($(html).find('.content img')); $(".content img").css({width:'200px',display:'inline-block'}) }}) } $(this).html(parseInt($(this).html())+13) }) // Your code here... })();