all
/
g
/
s
/
fur
/
art
/
ai
/
3dcg
/
f
/
rp
/
req
/
p2p
/
dis
/
lit
/
kaki
chat
GUROchan!
This list is WIP...
1
2
3
So use the classic menu
Link 4
Link 5
Link 6
Link 7
List 3
Link 8
Link 9
[
Settings
]
[
Home
] [
Catalog
] [
Search
] [
Thread list
] [
Stats
] [
Reports
] [
Watcher
] [
PMs
] [
Admin
]
Discussion
[
Return
] [
Bottom
]
Posting mode: Reply
Name
E-mail
sage
Subject
Post
Comment
BBCode
B
I
U
S
Spoiler
Code
File
Animated GIF
Password
(for deletion)
Allowed file types are: gif, jpg, jpeg, png, webp, webm, mp4
Maximum file size allowed is 25000 KB.
Images greater than 255 * 255 pixels will be thumbnailed.
35
unique users in the last 30 minutes (including lurkers)
Switch form position
|
BBCode reference
|
Banned?
|
Quick reply
|
Post API
First
[1]
Last
Possible return for the "expand all" button?
Emma
2021/04/09
(Fri)
09:36:33
No.
12222
[
Report
]
AS
▶
I loved the button on the old gurochan that automatically expanded all images. Was really useful on mobile so it didn't yank your view around every time you clicked on an image. Is there any way we can have that back? Or was that something unique to the previous website?
>>
1
kuz
2021/04/09
(Fri)
09:38:13
No.
12223
[
Report
]
▶
ill add it to my to-do list :)
>>
2
Anonymous
2021/05/04
(Tue)
22:04:16
No.
12366
[
Report
]
▶
Here's a user script that both limits images to screen width when expanded as well as an "expand all" besides the "gallery mode" checkbox:
// ==UserScript==
// @name Insert Helpers
// @description Adds some convenience features to guro.wtf
// @match *://img.guro.wtf/*domain=guro.wtf
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.log("patching guro.wtf");
let on_viewer_page = window.location.pathname.endsWith("koko.php");
let previews = Array.from(document.querySelectorAll("img.postimg"));
let expandAll = function () {
for(let x of previews) {
x.click();
}
};
let style = document.createElement("style")
style.innerText = "img.postimg { max-width: 100%; } img.expandimg { max-width: 100%; }";
document.head.appendChild(style)
let galfuncs = document.getElementById("galfuncs");
if(galfuncs) {
var btn = document.createElement("button");
btn.innerText = "Expand all";
btn.style.margin = "4px";
btn.addEventListener("click", expandAll);
galfuncs.appendChild(btn);
}
})();
>>
3
Anonymous ## Mod
2021/05/05
(Wed)
09:20:48
No.
12369
[
Report
]
▶
This feature has been added to the offical script.
[
Top
]
Delete post: [
File only
]
Password:
First
[1]
Last
Style: