diff --git a/dismiss-banner/dismiss-banner.user.js b/dismiss-banner/dismiss-banner.user.js new file mode 100644 index 0000000..61d9ed7 --- /dev/null +++ b/dismiss-banner/dismiss-banner.user.js @@ -0,0 +1,22 @@ +// ==UserScript== +// @name Dismiss Net Neutrality Banner +// @namespace https://github.com/Glorfindel83/ +// @description Automatically dismisses the Net Neutrality banner whenever you visit a (new) site. +// @author Glorfindel +// @version 0.1 +// @match *://*.stackexchange.com/* +// @match *://*.stackoverflow.com/* +// @match *://*.superuser.com/* +// @match *://*.serverfault.com/* +// @match *://*.askubuntu.com/* +// @match *://*.stackapps.com/* +// @match *://*.mathoverflow.net/* +// @grant none +// ==/UserScript== + +(function () { + "use strict"; + setTimeout(function() { + $("#net-neutrality-dismiss").click(); + }, 100); +})(); \ No newline at end of file