Add game-datacards-enhancements.user.js

This commit is contained in:
2025-09-24 19:56:32 +02:00
parent 8e4472c29e
commit cb55028192

View File

@@ -0,0 +1,26 @@
// ==UserScript==
// @name Game-Datacards Enhancements
// @description Changes the way external images are shown when printing
// @author luxick
// @version 2025-09-24
// @updateURL https://git.luxick.de/luxick/scripts/raw/branch/master/game-datacards-enhancements.user.js
// @downloadURL https://git.luxick.de/luxick/scripts/raw/branch/master/game-datacards-enhancements.user.js
// @namespace https://game-datacards.eu/
// @match https://game-datacards.eu/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
const style = document.createElement('style');
style.textContent = `
.header_container::before {
width: 600px !important;
height: 196px !important;
z-index: 100;
}
`;
document.head.appendChild(style);
})();