Hide 'Edit' Buttons/Labels on Wikia websites

Hides The 'Edit' Buttons on any Wikia Website

// ==UserScript==
// @name        Hide 'Edit' Buttons/Labels on Wikia websites
// @namespace   https://gf.qytechs.cn/en/users/12018-zach-d
// @description Hides The 'Edit' Buttons on any Wikia Website
// @include     http://*.wikia.com/*
// @include     https://*.wikia.com/*
// @version     1
// @grant       none
// ==/UserScript==

for (i = 0; i < document.getElementsByClassName("editsection").length; i++) {
    document.getElementsByClassName('editsection')[i].style.visibility = 'hidden';
}

QingJ © 2025

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