Greasy Fork

Greasy Fork is available in English.

扇贝阅读内容去除图片

使用后可在扇贝阅读页面隐藏内容图片,使页面更加简洁。点击页面左侧‘点击切换’按钮可切换图片状态

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name  扇贝阅读内容去除图片
// @namespace    http://tampermonkey.net/
// @description 使用后可在扇贝阅读页面隐藏内容图片,使页面更加简洁。点击页面左侧‘点击切换’按钮可切换图片状态
// @version      0.2
// @match        *://web.shanbay.com/reading/*
// @grant        none
// @run-at       document-end
// @license MIT
// ==/UserScript==
(function() {
  'use strict';
 
  var parentElement = document.body;  
  
  var div = document.createElement("div");  
  
  div.style.cssText = "color: red;position:fixed;left:10px;top:200px;cursor:pointer;width:18px;";  
  div.innerText = "点击切换";  
    
  div.addEventListener("click", function() {
    var imgs = document.querySelectorAll(".article-content img");
    if (imgs && imgs.length) {
      imgs.forEach(function(img) {
        if (img.style.display === "none") {  
          img.style.display = "block";  
        } else {  
          img.style.display = "none";  
        } 
      });
    }
  });   
  parentElement.appendChild(div);
})();