27 lines
838 B
JavaScript
27 lines
838 B
JavaScript
// ==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);
|
|
})();
|