Goth Alert

Antidote against FAST-fashion. Bypass a list of fast-fashion brands's websites.

  1. // ==UserScript==
  2. // @name Goth Alert
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Antidote against FAST-fashion. Bypass a list of fast-fashion brands's websites.
  6. // @author Fashionistawarness
  7. // @license MIT
  8. // @match https://www.zara.com/*
  9. // @match https://www2.hm.com/*
  10. // @match https://www.balenciaga.com/*
  11. // @match https://www.uniqlo.com/*
  12. // @match https://www.gap-france.fr/*
  13. // @match https://www.forever21.com/*
  14. // @match https://www.asos.com/*
  15. // @match https://fr.shein.com/*
  16. // @match https://www.stradivarius.com/*
  17. // @match https://shop.mango.com/*
  18. // @match https://www.zalando.fr/*
  19. // @match https://www.prettylittlething.fr/*
  20. // @match https://www.nike.com/*
  21. // @match https://www.primark.com/*
  22. // @match https://www.urbanoutfitters.com/*
  23. // @match https://www.esprit.fr/*
  24. // @match https://www.esprit.us/*
  25. // @match https://www.missguided.co.uk/*
  26. // @match https://fr.victoriassecret.com/*
  27. // @match https://www.ripcurl.eu/*
  28. // @match https://fr.zaful.com/*
  29. // @match https://www.guess.eu/*
  30. // @match https://www.hollisterco.com/*
  31. // @match https://www.ae.com/*
  32. // @match https://www.peacocktv.com/*
  33. // @match https://www.massimodutti.com/*
  34. // @match https://www.adidas.fr/*
  35. // @match https://www.hottopic.com/*
  36. // @match https://www.dior.com/*
  37. // @match https://www.newlook.com/*
  38. // @match https://www.fashionnova.com/*
  39. // @match https://fr.benetton.com/*
  40. // @match
  41. // @match
  42. // @match
  43. // @match
  44. // @match
  45. // @match
  46. // @match
  47. // @match
  48. // @match
  49. // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
  50. // @grant none
  51. // ==/UserScript==
  52. (function() {
  53. 'use strict';
  54. const div2 = document.createElement('div');
  55. div2.innerHTML =`<a href='https://la.bonnebulle.xyz/younes_guilmot/page2.html'> <span id='bitch' style='
  56. background-image: url(https://la.bonnebulle.xyz/younes_guilmot/goth_mov2.gif);
  57. background-position: center;
  58. background-repeat: no-repeat;
  59. vertical-align: middle;
  60. color: rgb(60, 255, 0);
  61. width:100%;
  62. text-align: center;
  63. font-family: fantasy;
  64. font-size: 200px;
  65. position: fixed;
  66. z-index: 9999;
  67. display:block;
  68. block-size:100%;
  69. padding:auto;
  70. filter: blur(1px);'>Goth Alert</span> </a>`
  71.  
  72.  
  73. document.body.insertAdjacentElement('afterbegin', div2);
  74.  
  75.  
  76.  
  77. })();