您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove GettyImages' watermarks.
// ==UserScript== // @name GettyImages without watermarks // @include http://www.gettyimages.co.uk/detail/* // @include https://gettyimages.co.uk/detail/* // @include https://www.gettyimages.co.uk/detail/* // @description Remove GettyImages' watermarks. // @version 1.2 // @namespace https://greasyfork.org/users/31723 // ==/UserScript== var html = document.body.innerHTML; html = html.replace( /w=0/g, 'w=125' ); html = html.replace( /s=2048x2048/g, 's=2048x2048&w=125' ); document.body.innerHTML = html;