Hides the Amazon Luna button in the Twitch header.
// ==UserScript==
// @name Hide Luna button on Twitch
// @namespace Violentmonkey Scripts
// @match https://www.twitch.tv/*
// @grant GM_addStyle
// @version 1.0
// @author b263
// @description Hides the Amazon Luna button in the Twitch header.
// @license MIT
// ==/UserScript==
GM_addStyle('div.top-nav__prime { display: none !important; }');