Skip to content

Instantly share code, notes, and snippets.

@johanbove
Last active February 9, 2021 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johanbove/e864890b12df33f475a8d5f9a009cd1a to your computer and use it in GitHub Desktop.
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
// ==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()
}())
@johanbove
Copy link
Author

johanbove commented Feb 9, 2021

Change the @include key to your own domain name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment