Add game-datacards-enhancements.user.js
This commit is contained in:
26
game-datacards-enhancements.user.js
Normal file
26
game-datacards-enhancements.user.js
Normal 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);
|
||||||
|
})();
|
||||||
Reference in New Issue
Block a user