Greasy Fork

SweC - Sponsor highlight section

Sponsor highlight section with bright red color and bigger text

目前为 2023-09-15 提交的版本。查看 最新版本

// ==UserScript==
// @name         SweC - Sponsor highlight section
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Sponsor highlight section with bright red color and bigger text
// @author       flashen
// @match        https://www.sweclockers.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=sweclockers.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';


    var div_list = document.querySelectorAll('div[class*=card-info-]');
    var div_array = [...div_list];
    div_array.forEach(div => {

    const style = `
    background: red;
    font-size: 40px;
    color: #fff;
    `;

        div.style.cssText = style;
    });
})();