Advertisement
Javi

Violentmonkey: Eventos en calendario

Aug 29th, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Javi Events
  3. // @namespace Violentmonkey Scripts
  4. // @match *://*.sharepoint.com/*calendar*
  5. // @grant none
  6. // ==/UserScript==
  7.  
  8. function remark() {
  9. document
  10. .querySelectorAll('[title~=javi i]')
  11. .forEach(elem => elem.style.backgroundColor = 'orange')
  12. }
  13. setInterval(remark, 1000*2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement