Created
April 22, 2019 22:47
-
-
Save KBalderson/3c36f0e9deb87be1f5a13df547564023 to your computer and use it in GitHub Desktop.
Production Application Warning.user.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Production Application Warning | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://order.universitytees.com/* | |
// @match https://order.717ink.com/* | |
// @match https://order.onpointpromos.com/* | |
// @match http://sosa.717ink.com/* | |
// @match https://sosa.717ink.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle('' + | |
'@keyframes production-warning-blinker { 0% { color: white} 50% { color: white } 51% { color: #c14f4b00; } 100% { color: #c14f4b00; } }' + | |
'body {' + | |
' padding-top: 30px;' + | |
'} ' + | |
'body:after {' + | |
' position: fixed;' + | |
' content: "⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ PRODUCTION ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ PRODUCTION ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ PRODUCTION ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ PRODUCTION ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️";' + | |
' z-index: 255;' + | |
' top: 0;' + | |
' color: white;' + | |
' display: block;' + | |
' background-color: #c14f4b;' + | |
' height: 30px;' + | |
' line-height: 30px;' + | |
' font-weight: bold;' + | |
' width: 100%;' + | |
' text-align: center;' + | |
' animation: production-warning-blinker 0.25s infinite alternate;' + | |
'}' + | |
''); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment