您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replaces the squares in the main menu bar which display rather small in Firefox and Chrome with downward pointing triangles that are a lot easier to click.
// ==UserScript== // @name [Konachan / yande.re / LB] Menu: Replace Dropdown Buttons // @namespace Zolxys // @description Replaces the squares in the main menu bar which display rather small in Firefox and Chrome with downward pointing triangles that are a lot easier to click. // @include /^https?://konachan\.com/[^#?]/ // @include /^https?://konachan\.net/[^#?]/ // @include /^https?://yande\.re/[^#?]/ // @include /^https?://lolibooru\.moe/[^#?]/ // @exclude /^[^#?]+\.\w+($|\?|#)/ // @version 1.2 // ==/UserScript== var c = document.getElementById('header').getElementsByTagName('a'); for (var i = 0; i < c.length; i++) if (c[i].childNodes.length) { var o = c[i].firstChild; if (o.nodeType == 3) { if (o.data.trim() == '\u25A0') o.data = o.data.replace('\u25A0','\u25BC'); } }