Anonymous ID: b01fdd Sept. 4, 2021, 9:02 p.m. No.88672   🗄️.is 🔗kun   >>8674 >>8686 >>8688

re:

</>

User JS

 

trying out the latest script, tyvm ~o7

 

pics load, proper ext. names, berry noice

 

mp4(s) I get the large thumbnail, czechKeK'T

  • when click on thumbnail, get err:

"No Video with Supported Format and MIME type found"

- researchin on that

 

HOWEVER,

using FFox, I have an ADD-ON, where *mouse~hover will

do an in~place pop-UP and play the vid inside the browser

 

ADD-ON:

 

Imagus

Enlarge thumbnails, and show images/videos from links with a mouse hover.

 

https://www.reddit.com/r/Imagus

 

/picrel

Anonymous ID: b01fdd Sept. 4, 2021, 9:22 p.m. No.88676   🗄️.is 🔗kun   >>8679 >>8680

>>88674

>tyvvvvvvvvm

!o7

 

re:

</>

User JS

 

tried adding this at end of your script { similar to your orig }

for the "function LoadListener()"

 

LoadListener()

var rewriteInterval = setInterval(LoadListener, 8000) # 8kun

 

{ it works well for me <3 }

tyvbm bb

~ ty berry much

Anonymous ID: b01fdd Sept. 4, 2021, 9:29 p.m. No.88680   🗄️.is 🔗kun   >>8681

>>88676

>var rewriteInterval = setInterval(LoadListener, ~~8000) # 8kun~~

# to long on pic load { like on dialup modems KeK }

 

set it back to 5000 # 5:5 =smmoothin

Anonymous ID: b01fdd Sept. 4, 2021, 9:38 p.m. No.88682   🗄️.is 🔗kun   >>8683

>>88679

>noice change from seizure provoking gifs of aei

they were like dat, a few not and dasting talent

 

like mime near to the heartbeat <3 ~share~the~rhythm~ or dizzyness

 

>>88681

>why would I stick that in

>aksin for a fren

>and exactly where?

 

window.addEventListener("scroll", LoadListener, false);

 

function LoadListener() {

 

var links = Array.from(document.querySelectorAll('a'))

var imageLinks = links.filter(l =/.media.8kun.top./ig.test(l.href))

imageLinks.forEach(link ={

var pieces = link.pathname.split('/')

var filename = pieces[pieces.length-1]

var [hash, extension] = filename.split('.')

switch (extension) {

case "mp3":

case "png":

case "gif":

var href = ${link.href.replace(&quot;media.&quot;,&quot;sys.&quot;)}/${hash}.jpg

break;

case 'php':

if (hash == 'player') {

// special handling for video thumbnail

var videoplayer = link.search.match(/media.8kun.top\/file_store\/(\w{64})./i)

if (videoplayer) {

var href = "https://sys.8kun.top/file_store/thumb/"+videoplayer[1]+".jpg";

} else {

var href = link.url;

}

}

break;

default:

var href = ${link.href.replace(&quot;media.&quot;,&quot;sys.&quot;)}

break;

}

var imgs = link.querySelectorAll('img')

imgs.forEach(i =i.src = href)

link.href = href;

})

}

 

LoadListener()

var rewriteInterval = setInterval(LoadListener, 5000)

 

the orig:

function RewriteMediaUrls()

{

var links = Array.from(document.querySelectorAll('a'))

var imageLinks = links.filter(l =/.media.8kun.top./ig.test(l.href))

imageLinks.forEach(link ={

var n = Math.floor(Math.random() * 77777777777) + 1

var pieces = link.href.split('/')

var filename = pieces[pieces.length-1]

var [hash, extension] = filename.split('.')

var href = ${link.href.replace(&quot;media.&quot;,&quot;sys.&quot;)}/${hash}.jpg?n=${n}

var imgs = link.querySelectorAll('img')

imgs.forEach(i =i.src = href)

link.href = href

})

}

 

RewriteMediaUrls()

var rewriteInterval = setInterval(RewriteMediaUrls, 5000)