Skip to content

Instantly share code, notes, and snippets.

@speezepearson
Created January 22, 2021 05:56
Hide Substack comment-like-counts
// ==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