Greasy Fork is available in English.
"script that change color"
当前为
// ==UserScript==
// @name Geekforgeeks
// @namespace http://tampermonkey.net/
// @version 0.7.1
// @description "script that change color"
// @author You
// @match https://www.geeksforgeeks.org/*
// @icon https://www.google.com/s2/favicons?domain=geeksforgeeks.org
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementsByClassName('article-page_flex')[0].style.backgroundColor = '#272822';
document.getElementsByClassName('title')[0].style.color = '#48b22b';
//ocument.getElementsByClassName('a-wrapper')[0].style.left = '25%';
document.getElementsByClassName('a-wrapper')[0].style.backgroundColor = '#272822';
document.getElementsByClassName('text')[4].style.fontSize = '20px';
document.getElementsByClassName('text')[4].style.textAlign = 'Justify';
document.getElementsByClassName('text')[4].style.color = '#e6db74';
var p_list = document.getElementsByTagName('p');
for(let i = 0; i<p_list.length;i++){p_list[i].style.color = '#e6db74'};
var strong_list = document.getElementsByTagName('strong');
for(let i = 0; i<strong_list.length;i++){strong_list[i].style.color = '#48b22b'};
var pre_list = document.getElementsByTagName('pre');
for(let i = 0; i<pre_list.length;i++){pre_list[i].style.color = '#48b22b'};
//var tb_list = document.getElementsByClassName('code-block'); for(let i = 0; i<tb_list.length;i++){tb_list[i].style.cssText = 'border: 1px solid black'};
setTimeout(()=>{
var img_list = document.getElementsByTagName('img');
for(let i = 7; i<img_list.length-5;i++){img_list[i].style.mixBlendMode = "exclusion"}},1000);
var header_bookmark = document.getElementsByClassName('header-main__slider-flex-inner')[1];
document.getElementsByClassName('header-main__left-list')[0].appendChild(header_bookmark);
})();