Return to old KYM (KnowYourMeme) design

Removes the KnowYourMeme redesign

  1. // ==UserScript==
  2. // @name Return to old KYM (KnowYourMeme) design
  3. // @namespace https://gf.qytechs.cn/en/users/1436613-gosha305
  4. // @match https://knowyourmeme.com/*
  5. // @version 1.1
  6. // @author gosha305
  7. // @license MIT
  8. // @description Removes the KnowYourMeme redesign
  9. // ==/UserScript==
  10.  
  11. if (!document.cookie.includes("old_design=true")){
  12. document.cookie = "old_design=true; path=/; domain=.knowyourmeme.com; expires=Fri, 31 Dec 9999 23:59:59 GMT";
  13. location.reload();
  14. }
  15.  
  16. //fix for main page feed images covering other elements
  17. const imageFix = document.createElement("style");
  18. imageFix.innerHTML = ".newsfeed_photo { width: 100%;}";
  19. document.head.appendChild(imageFix);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址