Created
September 2, 2016 13:29
-
-
Save bestony/b81f2cd3add56263ea7ba1618839e82e to your computer and use it in GitHub Desktop.
阿里云云栖论坛 Ctrl+ Enter 快速回复
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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