// ==UserScript== // @name Messenger Dark theme // @namespace Wizzergod // @version 1.0.9 // @description Dark theme for web version messenger. // @homepageURL https://www.twitch.tv/wizzergod // @supportURL https://www.twitch.tv/wizzergod // @author Wizzergod // @match *://*.www.messenger.com/* // @match *://*.messenger.com/* // @match *://messenger.com/* // @grant unsafeWindow // @icon https://static.xx.fbcdn.net/rsrc.php/yd/r/hlvibnBVrEb.svg // @downloadURL none // ==/UserScript== function addGlobalStyles(styles) { var head = document.getElementsByTagName('head')[0]; if (!head) { return; } styles.forEach(function(css) { var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); }); } var styles = [ '._4sp8 {background-color: #444950 !important;}', '._5irm._7mkm {background-color: #606770 !important;}', '._558b ._54ng {background-color: #606770fa !important;}', '._3egs {background: #444950 !important;}', '._3egs {background-color: rgb(68, 73, 80) !important;}', '._hh7 {background-color: rgb(255 255 255 / 7%) !important;}', '._hh7, ._6-xo, ._17w2, ._3eur._6ybk a, ._1lj0._6ybm {color: #f5f6f7 !important;}', '._7st9 {color: #ccc !important;}', '._1ht7, ._5iwm._6-_b ._58al {color: #606770 !important;}', '._4-hy ._3ixn {background-color: rgba(0, 0, 0, .5) !important;}', '._4eby {background: #8d949ed4 !important; border-radius: 0px !important;}', '._2i-c ._54nf ._54nh {color: #dadde1 !important;}', '._3eus, ._5uh, ._3szq {color: #8d949e !important;}', '._7ht_, ._4k7a {color: #606770 !important;}', '._1r_9 ._53ij {box-shadow: 0 0 0 1px rgb(0, 0, 0, .35), 0 1px 10px rgba(0, 0, 0, .35) !important;}', 'body, ._4gd0 {background: #606770 !important; color: #bec3c9 !important;}' ]; addGlobalStyles(styles);