Skip to content

Instantly share code, notes, and snippets.

@splintor
Last active May 25, 2025 07:44
Show Gist options
  • Save splintor/815ac336deebe2cdba26cc539b13071c to your computer and use it in GitHub Desktop.
Save splintor/815ac336deebe2cdba26cc539b13071c to your computer and use it in GitHub Desktop.
Astra - move submit buttons
// ==UserScript==
// @name Astra - move submit buttons
// @description LanguageTool icon might conflict with Astra submit button, so we moved it a little to the right. (https://wix.slack.com/archives/C06RY0PJUKZ/p1747929913234159)
// @namespace http://tampermonkey.net/
// @version 2025-05-25
// @author Shmulik Flint
// @match http://127.0.0.1:*/conversations/*
// @downloadURL https://gist.github.com/splintor/815ac336deebe2cdba26cc539b13071c/raw
// @updateURL https://gist.github.com/splintor/815ac336deebe2cdba26cc539b13071c/raw
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle('.send-stop-button-container { margin-right: 30px;');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment