Greasy Fork is available in English.

barra titolo scorrevole figuccio

barra titolo scheda scorrevole

  1. // ==UserScript==
  2. // @name barra titolo scorrevole figuccio
  3. // @description barra titolo scheda scorrevole
  4. // @version 1
  5. // @include *
  6. // @noframes
  7. // @author figuccio
  8. // @grant GM_setValue
  9. // @grant GM_getValue
  10. // @grant GM_registerMenuCommand
  11. // @namespace https://greasyfork.org/users/237458
  12. // @license MIT
  13. // ==/UserScript==
  14. var documentTitle = document.title + " - ";
  15. (function titleMarquee() {
  16. document.title = documentTitle = documentTitle.substring(1) + documentTitle.substring(0,1);
  17. setTimeout(titleMarquee, 200);
  18. })();