Skip to content

Instantly share code, notes, and snippets.

@bestony
Created September 2, 2016 13:29
Show Gist options
  • Save bestony/b81f2cd3add56263ea7ba1618839e82e to your computer and use it in GitHub Desktop.
Save bestony/b81f2cd3add56263ea7ba1618839e82e to your computer and use it in GitHub Desktop.
阿里云云栖论坛 Ctrl+ Enter 快速回复
// ==UserScript==
// @name 阿里云 云栖社区 快速回复
// @namespace http://www.ixiqin.com/
// @version 0.1
// @description Ctrl + Enter 快速回复
// @author 西秦公子
// @match https://yq.aliyun.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function keyDown(e) {
if (e.which == 13 && e.ctrlKey) {
$('.js-answer-create').submit();
}
}
document.onkeydown = keyDown;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment