Skip to content

Instantly share code, notes, and snippets.

@splintor
Last active May 4, 2026 08:21
Show Gist options
  • Select an option

  • Save splintor/253875dee7be770118a32a44d2685902 to your computer and use it in GitHub Desktop.

Select an option

Save splintor/253875dee7be770118a32a44d2685902 to your computer and use it in GitHub Desktop.
// ==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