Willer Express Filter

Remove bus stops from list http://willerexpress.com/st/3/en/pc/bus/uketsuke/ where doesn't departure Willer Express bus

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name        Willer Express Filter
// @namespace   https://github.com/brincowale
// @description Remove bus stops from list http://willerexpress.com/st/3/en/pc/bus/uketsuke/ where doesn't departure Willer Express bus
// @include     http://willerexpress.com/st/3/en/pc/bus/uketsuke/area.php?cat1=*
// @exclude		http://willerexpress.com/st/3/en/pc/bus/uketsuke/area.php?cat1=*&key=2
// @version     1
// @grant       none
// ==/UserScript==

$( document ).ready(function() {
	$("tbody > tr > td:nth-of-type(6)").each(function () {
		// not contains 'WILLER GROUP'
    	if (!($(this).text().contains('WILLER GROUP'))){
        	$(this).parent().remove();
        } 
    });
});