Skip to content

Instantly share code, notes, and snippets.

@mikoim
Last active November 30, 2023 16:45
Show Gist options
  • Select an option

  • Save mikoim/8c255a1227d32cd06ba4 to your computer and use it in GitHub Desktop.

Select an option

Save mikoim/8c255a1227d32cd06ba4 to your computer and use it in GitHub Desktop.
Remove sold out items from 夢ふうりん / Let's shopping!
Array.prototype.forEach.call(document.querySelectorAll('img[src$="../tsk/soldout.gif"], img[src$="soldout.gif"]'), function (el, i) {
el.closest('tr').remove();
});
Array.prototype.forEach.call(document.querySelectorAll('img[src$="../tsk/soldout.gif"], img[src$="soldout.gif"]'),function(a){a.closest("tr").remove()});
// ==UserScript==
// @name Remove sold out items from 夢ふうりん
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Remove sold out items from 夢ふうりん
// @match https://yumefuurin.sakura.ne.jp/*/*.htm
// @match http://ginnan.afz.jp/*/*.htm
// @match http://www.afz.jp/~ginnan/*/*.htm
// @match https://server24.joeswebhosting.net/~ginnan/*/*.htm
// @grant none
// ==/UserScript==
(function() {
Array.prototype.forEach.call(document.querySelectorAll('img[src$="../tsk/soldout.gif"], img[src$="soldout.gif"]'), function (el, i) {
el.closest('tr').remove();
});
})();
@wappenull
Copy link
Copy Markdown

Thanks you, found this script randomly while searching for site authenticity. (site kinda look very primitive and very sketchy in today standard)
Time for seifuku hunt!

@mikoim
Copy link
Copy Markdown
Author

mikoim commented Feb 17, 2021

@wappenull
Copy link
Copy Markdown

@mikoim Hey, just curious, was the seller ok? Did you have any trouble buying from them?

@mikoim
Copy link
Copy Markdown
Author

mikoim commented Feb 17, 2021

@wappenull I've never met trouble. In the first place, this script allows consumers to find available products easily, so it will cause growing their sales.

USE AT OWN YOUR RISK

@wappenull
Copy link
Copy Markdown

Finally bought my share of seifuku and imported them here oversea, the site's deals are very gooood. : )
Thanks to your script! It indeed helps growing their sale! XD
Cheers.
image

@mikoim
Copy link
Copy Markdown
Author

mikoim commented Jun 28, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment