[ b / kemono / coomer ]

/coomer/ - coomer.party

Name
Email
Subject
Comment
Verification
File
Password (For file deletion.)

File: 1745948189801.jpeg (106.56 KB, 720x720, IMG_0726.jpeg)

 No.5501

With one of the new updates to the site, the download link path changed to include a “?f” extension which automatically starts the download on click, rather than open in a separate tab for viewing

Please revert to the previous behavior. If we want to download, we can always right click or long press to save link as

 No.5509


 No.5515

Did a quick GPT request for a tampermonkey script. Worked for me on Firefox.

// ==UserScript==
// @name Coomer Video Link Cleaner (Dynamic)
// @namespace http://tampermonkey.net/
// @version 1.3
// @description Remove ?f=… from .mp4 links (even on dynamic pages)
// @match https://*.coomer.su/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

function cleanLinksInNode(node) {
const links = node.querySelectorAll ? node.querySelectorAll('a[href*=".mp4?f="]') : [];
links.forEach(link => {
const cleanHref = link.href.replace(/(\.mp4)\?.*$/, '$1');
link.href = cleanHref;
link.target = '_blank'; // abrir em nova aba, opcional
});
}

// limpa os links que já estiverem presentes
cleanLinksInNode(document);

// observa mudanças no DOM para agir em links carregados dinamicamente
const observer = new MutationObserver(mutations => {
for (const mutation of mutations) {
mutation.addedNodes.forEach(node => {
if (node.nodeType === 1) { // ELEMENT_NODE
cleanLinksInNode(node);
}
});
}
});

observer.observe(document.body, {
childList: true,
subtree: true
});
})();

 No.5522

Was done on purpose.

 No.5524

>>5522
No shit. you want more ad revenue but it's annoying change it back

 No.5549

File: 1746681264964.jpg (68.46 KB, 493x667, Your_bills_has_been.jpg)

Of course you done it on purpose your bills have been Affected

You can Either fix Videos that's not working like you or Pay the 40M you owe us at Chase Bank We are Graciously giving until next Friday

 No.5552

Just noticed this. PSA stop cooming.



[Return][Go to top] [Catalog] [Post a Reply]
Delete Post [ ]
[ b / kemono / coomer ]