Google Login Screen Dark Night Mode Theme

Google Login Screen Dark Night Mode Theme sign in with google

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name        Google Login Screen Dark Night Mode Theme 
// @namespace   english
// @description Google Login Screen Dark Night Mode Theme sign in with google 
// @include     http*://*accounts.google.*/signin?*
// @version     1.3
// @run-at document-end
// @grant       GM_addStyle
// ==/UserScript==



var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '                                                /*\n*/body {/*\n*//*\n*/    background: #393939;/*\n*/   /*\n*/    /*\n*/   /*\n*//*\n*/}body, input, textarea, select, button {/*\n*/    color: #ddd;/*\n*/    font-family: "PT Mono;/*\n*/}.u7land .B9IrJb {/*\n*/    color: #e0e0e0;/*\n*/}.LJtPoc {/*\n*/     background: #545454;/*\n*/ /*\n*/    -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);/*\n*/    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);/*\n*/  /*\n*/}.Fmgc2c {/*\n*/    color: #cbcbcb;/*\n*/   /*\n*/}a, a:hover, a:visited, a[href].uBOgn, button[type="button"].uBOgn {/*\n*/    color: #c9ddf6;/*\n*/    /*\n*/}.xRNBsb {/*\n*/    color: #96b9f5;/*\n*/}.TnvOCe:focus {/*\n*/    background: #323232;/*\n*/ }.nDKKZc.oG5Srb {/*\n*/    color: #88b5f2;/*\n*/}.nDKKZc:hover.oG5Srb:not(.RDPZE) {/*\n*/    background: #303030;/*\n*/}.OabDMe {/*\n*/  /*\n*/    background-color: #72aaf3;/*\n*/ /*\n*/}.AxOyFc ,.snByac{color:#88b5f2 !important;}.dU0W2d {/*\n*/   /*\n*/    border-bottom: 1px solid #848484;/*\n*/    /*\n*/}                                  ';
document.getElementsByTagName('head')[0].appendChild(style);