Kwai Customizer

Aceito PIX Para Futuras Att 48898955820

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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);
})();