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
// @compatible  chrome
// @require     https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
// ==/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);
  });
});