Show Notifications on hover
目前為
// ==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();
});
});