-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreddit.com.user.js
More file actions
21 lines (20 loc) · 859 Bytes
/
reddit.com.user.js
File metadata and controls
21 lines (20 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// ==UserScript==
// @name (KTN) reddit.com
// @description (KTN) reddit.com
// @author ktnjared
// @version 20250217
// @run-at document-start
// @grant GM_addStyle
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @homepageURL https://github.com/ktnjared/userscripts/
// @downloadURL https://github.com/ktnjared/userscripts/raw/refs/heads/main/reddit.com.user.js
// @updateURL https://github.com/ktnjared/userscripts/raw/refs/heads/main/reddit.com.user.js
// @match *://*.reddit.com/*
// @match *://reddit.com/*
// ==/UserScript==
// Display full-szied images
(function() {
const style = document.createElement('style');
style.textContent = 'figure > div, figure > div > img, figure > a > div, figure > a > div > img {height: 100%;}';
document.head.appendChild(style);
})();