Greasy Fork 还支持 简体中文。

GC - Hagan Blah Blah avatar

Explanation by batmanda: "You have to make the king ANGRY (I think I got kicked out can't remember) while using a phrase that contains the word "nugget". Nugget is an option in the 2nd to last blank.". This script automatically fills insightful nuggets of wisdom, incorporating the term 'nugget'. (credits to Humro for the GC - Wise Old King script, and batmanda for the by avatar solution).

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         GC - Hagan Blah Blah avatar
// @version      1.0.3
// @description  Explanation by batmanda: "You have to make the king ANGRY (I think I got kicked out can't remember) while using a phrase that contains the word "nugget". Nugget is an option in the 2nd to last blank.". This script automatically fills insightful nuggets of wisdom, incorporating the term 'nugget'. (credits to Humro for the GC - Wise Old King script, and batmanda for the by avatar solution).
// @author       Teffy (original created by Humro)
// @match        https://www.grundos.cafe/medieval/wiseking*
// @match        www.grundos.cafe/medieval/wiseking*
// @match        https://grundos.cafe/medieval/wiseking*
// @match        grundos.cafe/medieval/wiseking*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=grundos.cafe
// @grant        none
// @license      MIT
// @namespace    https://greasyfork.org/en/users/1251911
// ==/UserScript==

(function() {
    'use strict';

    $('document').ready( function() {
        $('#wisdom1').val('A wise friend once told me that');
        $('#wisdom2').val('pride');
        $('#wisdom3').val('is like');
        $('#wisdom4').val('the tenacity of');
        $('#wisdom5').val('a school of');
        $('#wisdom6').val('nugget');
        $('#wisdom7').val('Chias');
    });
})();