Last active
November 30, 2023 16:45
-
-
Save mikoim/8c255a1227d32cd06ba4 to your computer and use it in GitHub Desktop.
Remove sold out items from 夢ふうりん / Let's shopping!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.prototype.forEach.call(document.querySelectorAll('img[src$="../tsk/soldout.gif"], img[src$="soldout.gif"]'), function (el, i) { | |
el.closest('tr').remove(); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.prototype.forEach.call(document.querySelectorAll('img[src$="../tsk/soldout.gif"], img[src$="soldout.gif"]'),function(a){a.closest("tr").remove()}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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(); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.