Big Scrollbars for Google Tasks

only work on https://tasks.google.com/tasks/, not work on https://calendar.google.com/calendar/u/0/r/tasks

  1. // ==UserScript==
  2. // @name Big Scrollbars for Google Tasks
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description only work on https://tasks.google.com/tasks/, not work on https://calendar.google.com/calendar/u/0/r/tasks
  6. // @author Hendrix Huang
  7. // @match https://tasks.google.com/*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10. GM_addStyle(`
  11. ::-webkit-scrollbar {
  12. height: 50px;
  13. }
  14. `);