Greasy Fork

Trip Mode vMeta - Messenger

A modern Convo.trip module. #101025 #110101001

目前为 2022-09-23 提交的版本。查看 最新版本

// ==UserScript==
// @name          Trip Mode vMeta - Messenger
// @namespace     http://userstyles.org
// @description	  A modern Convo.trip module. #101025 #110101001
// @author        0xDzul
// @include       http://facebook.com/*
// @include       https://facebook.com/*
// @include       http://*.facebook.com/*
// @include       https://*.facebook.com/*
// @version       1.0
// ==/UserScript==
(function() {
    'use strict';
    var styles = `body{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-image: -webkit-linear-gradient(92deg,#26F33C,#3AFE46);
        animation: animate 3s linear infinite;
      }
      @keyframes animate {
        from{-webkit-filter:hue-rotate(0deg)}to{-webkit-filter:hue-rotate(360deg);
      }`
	var styleSheet = document.createElement("style")
    styleSheet.type = "text/css"
    styleSheet.innerText = styles
    document.head.appendChild(styleSheet)
})();