beehaw.org Ctrl + Enter to submit comment

beehaw.org Ctrl + Enter to submit comment 2

目前為 2023-06-02 提交的版本,檢視 最新版本

// ==UserScript==
// @name        beehaw.org Ctrl + Enter to submit comment 
// @namespace   english
// @description beehaw.org Ctrl + Enter to submit comment  2
// @include     http*://*beehaw.org*
// @version     1.13
// @run-at document-end
// @license MIT
// @grant       GM_addStyle
// ==/UserScript==


// Main - CSS hides two classes - video add box, and call to action box under it. - also social media



document.body.addEventListener('keydown', (event) => {
    if(event.key === "Enter" && (event.metaKey || event.ctrlKey)) {
        event.target.form?.submit();
    }
});