您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replaces the image placeholders on spiegel.de if JS is disabled
// ==UserScript== // @name Replace image placeholders on spiegel.de // @namespace ImgPlcholderRepl // @version 0.1 // @description Replaces the image placeholders on spiegel.de if JS is disabled // @author Das Boo // @match *://www.spiegel.de // @grant none // ==/UserScript== (function() { 'use strict'; var imgs = document.querySelectorAll('img'); var len = imgs.length; for (var i=0;i<len;i++) { if (imgs[i].src.match("dimension")) { imgs[i].src = imgs[i].getAttribute("data-original"); } } })();