Last active
May 4, 2026 08:21
-
-
Save splintor/253875dee7be770118a32a44d2685902 to your computer and use it in GitHub Desktop.
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 mcp-s - auto allow connect | |
| // @namespace Shmulik's Scripts | |
| // @match https://mcp-s-connect.wewix.net/on-prem-org/auth/consent* | |
| // @downloadURL https://gist.githubusercontent.com/splintor/253875dee7be770118a32a44d2685902/raw | |
| // @updateURL https://gist.githubusercontent.com/splintor/253875dee7be770118a32a44d2685902/raw | |
| // @grant none | |
| // @version 1.0 | |
| // @author shmulikf@wix.com | |
| // @description 12/04/2026, 15:39:35 | |
| // ==/UserScript== | |
| (function () { | |
| 'use strict'; | |
| const interval = setInterval(() => { | |
| const allowButton = document.querySelector('a.bg-primary'); | |
| if (allowButton) { | |
| allowButton.click(); | |
| clearInterval(interval); | |
| } | |
| }, 100); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment