Criticker Sidebar Expander

Expands the sidebar on film / game pages on Criticker.com to reveal the IMDb link

  1. // ==UserScript==
  2. // @name Criticker Sidebar Expander
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.0.2
  5. // @description Expands the sidebar on film / game pages on Criticker.com to reveal the IMDb link
  6. // @author Alsweider
  7. // @match https://www.criticker.com/film/*
  8. // @match https://www.criticker.com/tv/*
  9. // @match https://games.criticker.com/game/*
  10. // @icon https://www.criticker.com/favicon.ico
  11. // @license MIT
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. function clickMoreOptions() {
  19. let moreButton = document.querySelector('#tip_sidebar_action_more a');
  20. if (moreButton) {
  21. moreButton.click();
  22. }
  23. }
  24.  
  25. // Direkt beim Laden der Seite ausführen
  26. clickMoreOptions();
  27.  
  28. })();