Devuplads Remove Bloat

only removes elements from the devuploads download page

Verze ze dne 12. 12. 2023. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        Devuplads Remove Bloat
// @description only removes elements from the devuploads download page
// @match       https://thecubexguide.com/*
// @match       https://djxmaza.in/*
// @match       https://dev.miuiflash.com/*
// @match       https://devuploads.com/*
// @run-at 	document-body
// @grant       GM_addStyle
// @version     1.1.4
// @author      hdyzen
// @namespace https://greasyfork.org/users/821661
// ==/UserScript==

(function () {
	'use strict';
	if (location.hostname !== 'devuploads.com') GM_addStyle(`body{overflow:hidden!important;background:#1d2025!important}.download-btn > button, #dlbtn, #downbtn, a.btn.btn-primary.btn-block.mb-4{max-width: 500px!important;}.download-btn,#downloadNow{position: fixed!important;top: 0!important;left: 0!important;z-index: 9999!important;max-width: 100%!important;width: 100%!important;height: 100%!important;display: flex!important;justify-content: center!important;align-items: center!important;flex-direction: column!important;background-color: #1d2025!important;}`);
	if (location.hostname === 'devuploads.com') GM_addStyle(`*, body {box-sizing: border-box !important;margin: 0 !important;padding: 0 !important;}h2.text-center.filesof {margin: 10px !important;}.navbar, .footer {display: none !important;}#container > .row {gap: 10px !important;}#container {height: 100vh !important;display: flex !important;justify-content: center !important;align-items: center !important;flex-direction: column !important;}div.mb-xl-5 {margin: 0 !important;}#files_list > .row {gap: 10px !important;}#files_list > .row > div {margin: 0 !important;max-width: unset !important;width: 100% !important;flex-basis: 300px !important;flex-grow: 1 !important;}#files_paging {margin-top: 10px !important;}body {background-color: #1d2025 !important;}.bg-white, #files_paging.paging, .form-control, #folders_paging {background: #3a414b !important;color: #b0c5e3 !important;}.border-bottom {border-color: #576271 !important;}`);
})();