Devuplads Remove Bloat

only removes elements from the devuploads download page

目前为 2023-11-25 提交的版本。查看 最新版本

// ==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/*
// @grant       GM_addStyle
// @version     1.1.2
// @author      hdyzen
// @namespace https://greasyfork.org/users/821661
// ==/UserScript==

(function () {
	'use strict';
	let style = 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;}*:not(#stylebot, :has(.download-btn, #downloadNow, div.download-btn.mb-4), .download-btn, #downloadNow, div.download-btn.mb-4, .download-btn *, #downloadNow *){display: none!important;}`);
})();