// ==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 // @compatible chrome // @require https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js // @downloadURL none // ==/UserScript== $(($) => { alert(1); $('body > div.app-container > div > div:nth-child(1) > div:nth-child(2) > div > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div > div > div > div.rxCustomScroll.rxCustomScrollV.active > div.scrollViewport.scrollViewportV > div > div:nth-child(1) > div > div:nth-child(3) > div').click(() => { alert(1); }); });