Dismiss Net Neutrality Banner v0.1

This commit is contained in:
Glorfindel 2017-07-12 13:57:08 +02:00
parent 0744d41f28
commit 7830e2a1ab
1 changed files with 22 additions and 0 deletions

View File

@ -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);
})();