Greasy Fork is available in English.

Cookie Clicker Auto Clicker

Merriam Webster Search on Right Click

// ==UserScript==
// @name         Cookie Clicker Auto Clicker
// @namespace    https://orteil.dashnet.org/cookieclicker/
// @version      1.0.0
// @description  Merriam Webster Search on Right Click
// @author       Konghe Won
// @include        https://orteil.dashnet.org/cookieclicker/*
// @include        https://orteil.dashnet.org/cookieclicker/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
	function click(){
		document.querySelector("#bigCookie").click()
	}
	setInterval(function (){click()},1);
})();