您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
try to take over the world!
// ==UserScript== // @name 简书显示图片 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author Ericwyn // @date 2019-06-05 // @description 6月初的时候简书没法显示图片,使用这个脚本可以让图片重新显示~ // @match https://www.jianshu.com/p/* // @grant none // ==/UserScript== (function() { 'use strict'; let doms = document.getElementsByClassName("image-view"); for(let i = 0;i < doms.length; i ++){ let src = doms[i].getElementsByTagName("img")[0].getAttribute("data-original-src"); doms[i].style.background = "url('"+src+"')"; } setTimeout(function () { for(let i = 0;i < doms.length; i ++){ doms[i].classList.remove("image-view-maintain"); } },1000) // Your code here... })();