Created
January 22, 2021 05:56
Hide Substack comment-like-counts
This file contains hidden or 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 Hide Substack comment-like-counts | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Hide Substack comment-like-counts | |
// @author https://github.com/speezepearson | |
// @match https://*.substack.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var el = document.createElement('style'); | |
el.innerText = '.comments-page .like-button { display: none; }'; | |
document.head.appendChild(el); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment