Criticker Sidebar Expander

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

目前为 2025-03-17 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Criticker Sidebar Expander
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.0.1
  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://games.criticker.com/game/*
  9. // @icon https://www.criticker.com/favicon.ico
  10. // @license MIT
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. function clickMoreOptions() {
  18. let moreButton = document.querySelector('#tip_sidebar_action_more a');
  19. if (moreButton) {
  20. moreButton.click();
  21. }
  22. }
  23.  
  24. // Direkt beim Laden der Seite ausführen
  25. clickMoreOptions();
  26.  
  27. })();