Yandere show hidden posts

Display all hidden NSFW posts and add a red border around them

目前为 2023-12-16 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Yandere show hidden posts
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.0.1
  5. // @description Display all hidden NSFW posts and add a red border around them
  6. // @author remisiki
  7. // @match https://yande.re/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=yande.re
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Your code here...
  16. document.querySelectorAll(".javascript-hide").forEach(x => {
  17. x.classList.remove("javascript-hide");
  18. x.style.border = "1px solid red";
  19. });
  20. })();