Greasy Fork is available in English.

Band Ctrl+Enter Post

add Ctrl+Enter Posting to Band.us

// ==UserScript==
// @name         Band Ctrl+Enter Post
// @namespace    http://band.us/
// @version      0.0.1
// @description  add Ctrl+Enter Posting to Band.us
// @author       explainpark101
// @match        https://www.band.us/band/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=band.us
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    window.addEventListener("keyup", e=>{
        if (e.code == "Enter" && e.ctrlKey && !e.shiftKey && !e.altKey){
            document.querySelector(`#wrap > div.layerContainerView > div > div > section > div > div > div > div.buttonArea._bottomToolbar > div > div.buttonSubmit > button[type="submit"]`)?.click();
            console.log(e);

        }
    });

    // Your code here...
})();