[RE: เปลี่ยนสีแบ็คกราวสีเขียวๆได้ไหมครับ]
ลง tampermonkey แล้วใส่ script
// ==UserScript==
// @name Change Background Color
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Change background color to green
// @author You
// @match https://*.soccersuck.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// เปลี่ยนสีพื้นหลังเป็นสีเขียว
document.body.style.backgroundColor = "green";
// หากต้องการเปลี่ยนสีพื้นหลังขององค์ประกอบอื่นๆ ด้วย
const elements = document.querySelectorAll('div, section, article, header, footer');
elements.forEach(element => {
element.style.backgroundColor = "#00FF8080";
});
})();
ผมใช้สีเขียวปวดตามาก ทั่นปรับสีเอาที่ท่านไม่ปวดตาเลย