SCP foundation default logo

Returns the default logo for the SCP foundation site. No keys are required for this.

  1. // ==UserScript==
  2. // @name SCP foundation default logo
  3. // @namespace http://tampermonkey.net/
  4. // @version 1
  5. // @description Returns the default logo for the SCP foundation site. No keys are required for this.
  6. // @author KoHoneJIb
  7. // @match http://scp-wiki.wikidot.com/*
  8. // @icon https://www.google.com/s2/favicons?domain=tampermonkey.net
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. var header = document.getElementById("header");
  16. header.style.background= "url(/local--files/component:theme/logo.png) 10px 40px no-repeat";
  17. })();