Make your Twetter Stream electrifying!
Mint
// ==UserScript==
// @name Twitter Rainbow stream
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Make your Twetter Stream electrifying!
// @author eggplants
// @homepage https://github.com/eggplants
// @match https://twitter.com/*
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js
// ==/UserScript==
function rainbow(selector) {
const colors = 'to right, red, orange, yellow, green, aqua, blue, purple';
console.log(`linear-gradient(${colors})`);
$(selector).css('background', `linear-gradient(${colors})`);
}
setInterval(function() {
rainbow('body');
rainbow('div');
}
)