Devuplads Remove Bloat

only removes elements from the devuploads download page

目前為 2023-09-24 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

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