Le 19 avril 2021 à 23:48:24 molikuju a écrit :
t'es sur firefox ou un chromium ?
Chrome tout cours 
Le 19 avril 2021 à 23:53:01 :
Le 19 avril 2021 à 23:51:11 molikuju a écrit :
je l'ai mais comment te le filer il fait plusieurs milliers de lignesJe sais pas vraiment mais si tu peux le fouttre sur le github des scripts tampermonkey je pense que tu peux
![]()
c'est pas avec tampermonkey justement, j'ai que risibank dessus, nan faut que t'installes l'extension de chrome "stylus"
et ensuite tu vas sur https://userstyles.org/styles/118490/darkjvc

Attends, il-y a aussi un correctif DarkJVC mais en userscript tampermonkey , chez moi le correctif stylish déconne
// ==UserScript==
// @name Dark JVC Fix
// @namespace http://tampermonkey.net/
// @version 0.7
// @description Fix Dark JVC
// @author Dwnlt
// @include https://www.jeuxvideo.com/*
// @include https://www.jeuxvideo.com/recherche/forums/0-*
// @grant none
// @run-at document-body
// ==/UserScript==
(function() {
'use strict';
let fixCss =
`
body{
}
.layout--withBackground{
background-image:none !important;
background-color:#202020 !important;
}
.layout__content{
background-color:#1C1C1C !important;
}
.layout__breadcrumb{
background-color:#1C1C1C !important;
}
.topic-list .dfp__atf ~ li:nth-of-type(even) {
background: #2E2E2E !important;
}
.topic-list .dfp__atf ~ li:nth-of-type(odd) {
background: #2A2A2A !important;
}
.topic-list li.topic-delete-gta{
background: #2E2E2E !important;
}
.topic-list .dfp__atf ~ li:nth-of-type(even):hover, .topic-list .dfp__atf ~ li:nth-of-type(odd):hover {
background: #202020 !important;
}
.jv-top-nav-link{
background: #000 !important;
border-bottom: .0625rem solid #505050 !important;
}
.jv-top-nav-lvl1 > .jv-top-nav-item .nav-link{
color: #bdbdbd !important;
}
.layout--withBackground .layout__breadcrumb, .layout--withBackground .layout__content, .layout--withBackground .layout__contentAfter, .layout--withBackground .layout__contentAside, .layout--withBackground .layout__contentBefore, .layout--withBackground .layout__contentHeader, .layout--withBackground .layout__contentMain, .layout--withBackground .layout__contentMainMedia, .layout--withBackground .layout__contentMainMedia--anchor, .layout--withBackground .layout__contentMainMediaHeader, .layout--withBackground .layout__contentTop, .layout--withBackground .layout__contextBottom {
background-color: #1c1c1c !important;
}
`
function injectCss(){
let head = document.getElementsByTagName('head')[0];
if (!head) { return; }
let style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = fixCss;
head.appendChild(style);
}
injectCss();
})();JvArchive compagnon