Greasy Fork

skype group name/icon-url

taking it

目前为 2021-03-29 提交的版本。查看 最新版本

// ==UserScript==
// @name        skype group name/icon-url
// @namespace   https://greasyfork.org/ja/users/744156-waricoma
// @description taking it
// @include     https://*.skype.com*
// @version     1
// @grant       none
// @require     https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
// ==/UserScript==

$('document').on('keydown', function(e) {
  var keyCode = e.which;
  console.log(keyCode, e.shiftKey, e.ctrlKey);
});