Sic 'Em 365 - Notification Hover

Show Notifications on hover

目前為 2023-07-20 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Sic 'Em 365 - Notification Hover
// @version      1.0
// @description  Show Notifications on hover
// @author       trumpetbear
// @match        https://sicem365.com/*
// @match        http://sicem365.com/*
// @grant        none
// @namespace https://greasyfork.org/users/66085
// @license MIT
// ==/UserScript==


$(document).ready(function() {
    'use strict';
    $("[aria-label='my notifications']").hover(function() {
        $($(".dashboard-panel")[1]).show();
    }, function(){
        $($(".dashboard-panel")[1]).hide();
    });
});