TVTime Episode Comment Picture Width

Smaller comment pictures, bigger reaction icons.

  1. // ==UserScript==
  2. // @name TVTime Episode Comment Picture Width
  3. // @version 1.0
  4. // @description Smaller comment pictures, bigger reaction icons.
  5. // @author seaque
  6. // @license MIT
  7. // @match *://*.tvtime.com/*/show/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=tvtime.com
  9. // @grant GM_addStyle
  10. // @run-at document-start
  11. // @namespace https://greasyfork.org/users/934668
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. GM_addStyle(" .comment .post .comment-picture img { width: 45%; } .comment .post .options .right-options { font-size: 18px; } .comment .reply .options { font-size: 16px; } ");
  18.  
  19. })();