// ==UserScript== // @name Add find.4chan search to every thread // @version 1.0 // @include http*://boards.4chan.org/* // @include http*://boards.4channel.org/* // @grant GM_addStyle // ==/UserScript== document.getElementById("boardNavDesktopFoot").innerHTML += ' '; var checkBox = document.getElementById("nsfwBox"); checkBox.addEventListener('change', function() { if (this.checked) { document.getElementById("searchForm").setAttribute("action", "https://find.4chan.org"); document.getElementById("searchBox").setAttribute("placeholder", "Search 4chan!"); } else { document.getElementById("searchForm").setAttribute("action", "https://find.4channel.org"); document.getElementById("searchBox").setAttribute("placeholder", "Search 4channel!"); } });