Skip to content

Instantly share code, notes, and snippets.

@yukikaoru
Last active August 7, 2019 13:43
Show Gist options
  • Save yukikaoru/389322413285b82c3c042fe6ebaece51 to your computer and use it in GitHub Desktop.
Save yukikaoru/389322413285b82c3c042fe6ebaece51 to your computer and use it in GitHub Desktop.
Openrecのコメント欄を消す
// ==UserScript==
// @name Remove openrec comment
// @version 1.1
// @description Openrecのコメント欄を消す
// @author YUKI Kaoru
// @match https://www.openrec.tv/live/*
// @grant none
// ==/UserScript==
(() => {
document.querySelector('aside.movie-page-chat-aside > div').remove()
document.querySelector('div.theater-mode-enter-icon').click()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment