Skip to content

Instantly share code, notes, and snippets.

@CairX
Last active August 17, 2022 10:28
Show Gist options
  • Save CairX/b870ef9d40187e1c4d843d6bebd64dcd to your computer and use it in GitHub Desktop.
Save CairX/b870ef9d40187e1c4d843d6bebd64dcd to your computer and use it in GitHub Desktop.
Crunchyroll: Hide comments.
// ==UserScript==
// @name Crunchyroll: Hide Comments
// @namespace https://gist.github.com/CairX
// @version 0.2
// @grant none
// @include /https?:\/\/(.*)?\.crunchyroll\.com\/*/
// @run-at document-end
// ==/UserScript==
var style = document.createElement("style");
style.innerHTML = ".commenting-wrapper { display: none; }";
document.body.appendChild(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment