Toggl-Button

A general Toggl button script displaying active time entry on all tabs of your browser

  1. // ==UserScript==
  2. // @name Toggl-Button
  3. // @namespace https://gitlab.paragon-es.de/toggl-button
  4. // @version 1.2
  5. // @include *
  6. // @grant GM_xmlhttpRequest
  7. // @grant GM_addStyle
  8. // @grant GM_getResourceText
  9. // @grant GM_getValue
  10. // @grant GM_setValue
  11. // @grant GM_info
  12. // @grant GM_registerMenuCommand
  13. // @require https://greatest.deepsurf.us/scripts/2670-toggllibrary/code/TogglLibrary.js
  14. // @resource togglStyle https://gitlab.paragon-es.de/toggl-button/core/raw/master/TogglLibrary.css
  15. // @description A general Toggl button script displaying active time entry on all tabs of your browser
  16. // ==/UserScript==
  17.  
  18. if (self == top) {
  19. new TogglButtonGM('body', function (elem) {
  20. return {
  21. generalMode: true
  22. };
  23. });
  24. }