Google Recaptcha Dark Theme Night Mode

Google Recaptcha Dark Theme Night Mode - currently undergoing build

  1. // ==UserScript==
  2. // @name Google Recaptcha Dark Theme Night Mode
  3. // @namespace english
  4. // @description Google Recaptcha Dark Theme Night Mode - currently undergoing build
  5. // @include http*://*
  6. // @version 1.4
  7. // @run-at document-end
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11.  
  12.  
  13. var style = document.createElement('style');
  14. style.type = 'text/css';
  15. style.innerHTML = ' #rc-imageselect {/*\n*/ /*\n*/ background-color: #323232;/*\n*/}.rc-button-reload ,.rc-button-audio,.rc-button-help{/*\n*//*\n*/ /*\n*/ filter: invert(100%);/*\n*//*\n*/} #jslghtbx div,#jslghtbx div iframe{ filter: invert(100%); } #jslghtbx div div,#jslghtbx div div div,#jslghtbx div div div div,#jslghtbx div div div div div{ filter: none; } ';
  16. document.getElementsByTagName('head')[0].appendChild(style);
  17.  
  18.  
  19.