Stops you from using google.
// ==UserScript==
// @name FUCK GOOGLE
// @namespace http://www.google.com
// @version 0.2
// @description Stops you from using google.
// @author Zackary-Bennett
// @match https://www.google.com/?safe=active&ssui=on
// @icon https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ficon-library.com%2Fimages%2Fcancel-icon-transparent%2Fcancel-icon-transparent-21.jpg&f=1&nofb=1&ipt=370cf4a284ff8b119e5d233e28a704fe6dd8af13464ac04b814e1e5bcbd9c24a&ipo=images
// @grant none
// @license GNU
// ==/UserScript==
(function() {
'use strict';
document.write("<h1>no more google, gotta use duckduckgo instead</h1>")
})();