only removes elements from the devuploads download page
当前为
// ==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.0
// @author hdyzen
// @namespace https://greasyfork.org/users/821661
// ==/UserScript==
(function () {
'use strict';
let style = GM_addStyle(`
.navbar, .footer, .col-lg-6.col-md-12.aboutFile.mb-4, center > div:has(script), .report, br, #closebtn_Desktop_Only, #featuredimage {
display: none !important;
}
.row > div {
max-width: unset !important;
width: 100% !important;
flex: unset !important;
}
body {
background: #151515 !important;
}
.download-page .file-info {
background: #232323 !important;
}
#downloadbtnc, #downloadbtnf, #downloadbtn {
background: #232323 !important;
border: 1px solid #208ce7 !important;
}
:is(#downloadbtnc, #downloadbtnf, #downloadbtn):hover {
background: #313131 !important;
border: 1px solid #04e8c7 !important;
}
html, body {
margin: 0 !important;
padding: 0 !important;
}
`);
})();