You are on page 1of 1

// ==UserScript==

// @name countDownTimerBig by YeltsinF


// @namespace https://www.facebook.com/jeanpirelag
// @version 1.1
// @description Appen timer in large size and visible when we go down to send the
task.
// @author Yeltsin Flores
// @match https*://view.appen.io/*
// @grant none
// ==/UserScript==

function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}

addGlobalStyle('#countdown_timer span {font-size: 175%; color: #3f0; padding-top:


0px; padding-right: 8px;');
addGlobalStyle('#masthead .inverse { position: fixed;');
addGlobalStyle('#countdown_timer { padding-top: 0px; padding-bottom: 0px; margin-
top: 0px; margin-bottom: 0px');
addGlobalStyle('h1.job-title {padding-top: 65px');

You might also like