Imdb Thread Auto-View

Auto-expand the thread comments in Imdb Message Boards

  1. // ==UserScript==
  2. // @name Imdb Thread Auto-View
  3. // @version 1.0
  4. // @description Auto-expand the thread comments in Imdb Message Boards
  5. // @author softwareresearchwork
  6. // @match http://*.imdb.com/*/board/thread/*
  7. // @match http://*.imdb.com/board/*/thread/*
  8. // @grant none
  9. // @namespace https://greasyfork.org/users/9306
  10. // ==/UserScript==
  11.  
  12. var elem = document.querySelector("a.mode-nest");
  13. elem && elem.click();