LoginSignup
8
4

More than 3 years have passed since last update.

スタバのWiFiに自動ログインするだけのスクリプト

Last updated at Posted at 2020-10-17

スタバのWiFi(at_STARBUCKS_Wi2)は1時間で切れてしまい繋ぎ直すのが面倒なのでスクリプトにしました。
chrome拡張のScriptAutoRunnerに登録して自動で流れるようにしてます。

const login = url => {
    if (url.indexOf("service.wi2.ne.jp/freewifi/starbucks/index.html") > 0) {
        document.getElementById('button_next_page').click()
    }
    if (url.indexOf("service.wi2.ne.jp/freewifi/starbucks/agreement.html") > 0){
        document.getElementById('button_accept').click()
    }
}
login(location.href)

イメージ
staba.gif

8
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
4