Goth Alert

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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         Goth Alert
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Antidote against FAST-fashion. Bypass a list of fast-fashion brands's websites.
// @author       Fashionistawarness
// @license MIT
// @match https://www.zara.com/*
// @match https://www2.hm.com/*
// @match https://www.balenciaga.com/*
// @match https://www.uniqlo.com/*
// @match https://www.gap-france.fr/*
// @match https://www.forever21.com/*
// @match https://www.asos.com/*
// @match https://fr.shein.com/*
// @match https://www.stradivarius.com/*
// @match https://shop.mango.com/*
// @match https://www.zalando.fr/*
// @match https://www.prettylittlething.fr/*
// @match https://www.nike.com/*
// @match https://www.primark.com/*
// @match https://www.urbanoutfitters.com/*
// @match https://www.esprit.fr/*
// @match https://www.esprit.us/*
// @match https://www.missguided.co.uk/*
// @match https://fr.victoriassecret.com/*
// @match https://www.ripcurl.eu/*
// @match https://fr.zaful.com/*
// @match https://www.guess.eu/*
// @match https://www.hollisterco.com/*
// @match https://www.ae.com/*
// @match https://www.peacocktv.com/*
// @match https://www.massimodutti.com/*
// @match https://www.adidas.fr/*
// @match https://www.hottopic.com/*
// @match https://www.dior.com/*
// @match https://www.newlook.com/*
// @match https://www.fashionnova.com/*
// @match https://fr.benetton.com/*
// @match
// @match
// @match
// @match
// @match
// @match
// @match
// @match
// @match
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
const div2 = document.createElement('div');
div2.innerHTML =`<a href='https://la.bonnebulle.xyz/younes_guilmot/page2.html'> <span id='bitch' style='
     background-image: url(https://la.bonnebulle.xyz/younes_guilmot/goth_mov2.gif);
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
    color: rgb(60, 255, 0);
    width:100%;
    text-align: center;
    font-family: fantasy;
    font-size: 200px;
    position: fixed;
    z-index: 9999;
    display:block;
    block-size:100%;
    padding:auto;
    filter: blur(1px);'>Goth Alert</span> </a>`


document.body.insertAdjacentElement('afterbegin', div2);



})();