Advertisement
jraavis

Display Creative Services

Nov 6th, 2019
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Display Creative Services
  3. // @namespace MM_Engineering
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author Raavi S
  7. // @match https://docs.google.com/presentation/d/e/2PACX-1vTBzmUe9jPonHhckAGNNBWNzAxGQYeE6-sBkc_l-qqTXem55zvZr7NTyZimJm2Az6fkfVIXFIaaxaUf/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var slide_length = document.querySelector('.goog-flat-menu-button-caption').getAttribute('aria-setsize');
  14. if(slide_length=='' || slide_length==0) {
  15. slide_length = 6;
  16. }
  17. var dcsInterval = setInterval(function(){
  18. window.location.reload();
  19. }, slide_length*6*1000);
  20. /*
  21. if(document.querySelector('.goog-flat-menu-button-caption').getAttribute('aria-posinset')==slide_length) {
  22. window.location.reload();
  23. }
  24. */
  25. })();
  26.  
  27. /*
  28. https://docs.google.com/presentation/d/e/2PACX-1vTBzmUe9jPonHhckAGNNBWNzAxGQYeE6-sBkc_l-qqTXem55zvZr7NTyZimJm2Az6fkfVIXFIaaxaUf/pub?start=true&loop=true&delayms=3000&slide=id.g62847cf8e2_1_150
  29. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement