Remove survey
// ==UserScript==
// @name Remove youtube livechat survey
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Remove survey
// @author You
// @match https://www.youtube.com/live_chat*
// @grant none
// @run-at document-end
// @license MIT
// ==/UserScript==
(function() {
'use strict';
let element = document.querySelector("#contents > yt-live-chat-poll-renderer")
if (element) {
element.parentNode.removeChild(element);
}
})();