Greasy Fork is available in English.

AWS-ClientVPN-Auto-Close-Browser-Tab

Simple script that targets the browser tab that AWS ClientVPN opens on authentication and closes it.

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         AWS-ClientVPN-Auto-Close-Browser-Tab
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Simple script that targets the browser tab that AWS ClientVPN opens on authentication and closes it.
// @author       John Polansky
// @icon         https://www.google.com/s2/favicons?domain=userscript.zone
// @include      http://127.0.0.1:35001/
// @run-at       document-end
// @inject-into content
// @license      MIT
// @noframes
// @grant window.close
// @grant window.focus
// ==/UserScript==


(function() {
    'use strict';

if (document.body.textContent.includes("You may close this window at any time.")) {
  console.log("Safe to close window.. goodbye!")
  window.close()
}
  
})();