inftab.com custom background

custom background for inftab.com

目前为 2023-10-05 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name inftab.com custom background
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description custom background for inftab.com
  6. // @author Stijn Bousard | boossy
  7. // @license MIT
  8. // @match https://inftab.com/*
  9. // @grant none
  10. // ==/UserScript==
  11. function addGlobalStyle(css) {
  12. var head, style;
  13. head = document.getElementsByTagName('head')[0];
  14. if (!head) { return; }
  15. style = document.createElement('style');
  16. style.type = 'text/css';
  17. style.innerHTML = css;
  18. head.appendChild(style);
  19. }
  20. addGlobalStyle('.wallpaper.ready { background-image: url(https://bsy.boossy.be/img/WERKSTATTkultur.jpg) !important; }');