Tampermonkey UserScript - Automatic Tab Closer Based on Designated URL Text
// ==UserScript== | |
// @name Autoclose URL | |
// @namespace Autoclose URL | |
// @include * | |
// @grant window.close | |
// ==/UserScript== | |
function check_if_should_close(url) { | |
if (url.match(/rnoreward/)) | |
return true; | |
return false; | |
} | |
if (check_if_should_close(document.location.href)) { | |
var win = window.open('your current page URL', '_self', ''); | |
window.close(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment