Last active
February 9, 2021 21:11
-
-
Save johanbove/e864890b12df33f475a8d5f9a009cd1a to your computer and use it in GitHub Desktop.
You have a coil.com web monitization tag in the head of your site and you don't want to send yourself money, use this TamperMonkey script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name coilMetaTagRemover | |
// @namespace http://johanbove.info/ | |
// @version 2.0 | |
// @description Removes my own Coil meta tag | |
// @author Johan Bové | |
// @include /johanbove.info | |
// @run-at document-body | |
// ==/UserScript== | |
(function() { | |
'use strict' | |
document.querySelector('meta[content^="$ilp.uphold.com/"]')?.remove() | |
}()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Change the
@include
key to your own domain name