Sic 'Em 365 - Notification Hover

Show Notifications on hover

  1. // ==UserScript==
  2. // @name Sic 'Em 365 - Notification Hover
  3. // @version 1.1
  4. // @description Show Notifications on hover
  5. // @author trumpetbear
  6. // @match https://sicem365.com/*
  7. // @match http://sicem365.com/*
  8. // @grant none
  9. // @namespace https://greasyfork.org/users/66085
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13.  
  14. $(document).ready(function() {
  15. 'use strict';
  16. $($(".dashboard-item")[1]).hover(function() {
  17. $($(".dashboard-panel")[1]).show();
  18. }, function(){
  19. $($(".dashboard-panel")[1]).hide();
  20. });
  21. });