Hide 'Edit' Buttons/Labels on Wikia websites

Hides The 'Edit' Buttons on any Wikia Website

  1. // ==UserScript==
  2. // @name Hide 'Edit' Buttons/Labels on Wikia websites
  3. // @namespace https://gf.qytechs.cn/en/users/12018-zach-d
  4. // @description Hides The 'Edit' Buttons on any Wikia Website
  5. // @include http://*.wikia.com/*
  6. // @include https://*.wikia.com/*
  7. // @version 1
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. for (i = 0; i < document.getElementsByClassName("editsection").length; i++) {
  12. document.getElementsByClassName('editsection')[i].style.visibility = 'hidden';
  13. }

QingJ © 2025

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