NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name BlurredBG
// @version 1
// @description Uses blurred version of avatar as the background.
// @author KoziLord
// @match https://www.messenger.com/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
// @require https://raw.githubusercontent.com/uzairfarooq/arrive/master/minified/arrive.min.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('head').append('<link rel="stylesheet" href="https://cdn.discordapp.com/attachments/178938189447299072/341299863490920479/BlurUS.css" />');
// Your code here...
$('head').append( $('<link rel="stylesheet" type="text/css" />').attr('href', 'https://cdn.discordapp.com/attachments/178938189447299072/339504597183889418/FluentGlow.css') );
$(document).arrive('._5l-3._1ht1',function() {
$(this).append('<div class="boxGlow"> <div class="glowEffect"></div> </div>');
});
$(document).on('mousemove', function(e) {
$('.glowEffect').css({
left: e.pageX,
top: e.pageY
});
});
})();