Kwai Customizer

Aceito PIX Para Futuras Att 48898955820

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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         Kwai Customizer
// @namespace    Kwai Customizer
// @version      0.1
// @license      MIT
// @description  Aceito PIX Para Futuras Att 48898955820
// @author       https://greasyfork.org/pt-BR/users/305931-emerson-bardusco
// @match        https://www.kwai.com/*
// @grant        none
// ==/UserScript==

(function() {
  'use strict';
  // Altera o fundo do site para preto
  document.body.style.background = '#000';

  // Altera a cor do texto para branco
  document.body.style.color = '#fff';

  // Esconde elementos desnecessários
  const elementosParaEsconder = [
    '.header',
    '.footer',
    '.ads',
    '.sidebar',
    '.nav',
  ];
  elementosParaEsconder.forEach((seletor) => {
    const elementos = document.querySelectorAll(seletor);
    elementos.forEach((elemento) => {
      elemento.style.display = 'none';
    });
  });

  // Reorganiza a disposição dos elementos
  const conteudoPrincipal = document.querySelector('.main-content');
  conteudoPrincipal.style.width = '80%';
  conteudoPrincipal.style.margin = '0 auto';

  // Adiciona um estilo personalizado ao site
  const estiloPersonalizado = document.createElement('style');
  estiloPersonalizado.innerHTML = `
    .video-card {
      background-color: #333;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
    .botao {
      background-color: #333;
      color: #fff;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
  `;
  document.head.appendChild(estiloPersonalizado);
})();