您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
文章内嵌图片替换为高清图片
// ==UserScript== // @name 游民星空自动替换高清图片 // @namespace https://greasyfork.org/zh-CN/users/6065-hatn // @version 0.1.1 // @description 文章内嵌图片替换为高清图片 // @author You // @include http*://www.gamersky.com/* // @icon http://www.gravatar.com/avatar/10670da5cbd7779dcb70c28594abbe56?r=PG&s=92&default=identicon // @grant none // @run-at document-end // ==/UserScript== $(function() { const $pdom = $('p[align="center"]>a'); if ($pdom.length < 1) return; $pdom.each(function() { const cat = /(http[^\?]+\.\w+)/gi; const src_ori = $(this).attr('href'); const res = src_ori.match(cat); const src = res[1]; //console.log('url: ', src); $('img', this).attr('src', src); }); });