// ==UserScript== // @name GameFAQs CTRL + Enter To Post // @namespace http://tampermonkey.net/ // @version 1.0 // @description CTRL + Enter to post a message on gamefaqs.gamespot.com. // @author -l_____________l- (SteamPunkSkull) // @match https://gamefaqs.gamespot.com/boards/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.addEventListener('keydown', doc_keyUp, false); function doc_keyUp(e) { if (e.keyCode == 13 && e.ctrlKey) { document.getElementById('post_new_message').click(); document.getElementById('post_new_topic').click(); } } })();