From 5fa7104be465b1faf5b743b90db651ee11f69965 Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 7 Jun 2019 21:15:27 +0200 Subject: [PATCH] rbb24_expand_comments: Increased delay to 10 seconds. --- comment-sections/rbb24_expand_comments.user.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/comment-sections/rbb24_expand_comments.user.js b/comment-sections/rbb24_expand_comments.user.js index cfc2f09..0dd2775 100644 --- a/comment-sections/rbb24_expand_comments.user.js +++ b/comment-sections/rbb24_expand_comments.user.js @@ -2,7 +2,7 @@ // @name Expand rbb24.de comments // @description Loads all comments under articles on rbb24.de and expands them. // @description:de Lädt alle kommentare unter artikeln auf rbb24.de und klappt sie aus. -// @version 2019.06.07.6 +// @version 2019.06.07.7 // @author tastytea // @copyright 2019, tastytea (https://tastytea.de/) // @license GPL-3.0-only @@ -32,9 +32,7 @@ function expand_comments() } setTimeout(function() // Wait for comments to load. - { - showall[0].click(); - }, 1000); + { showall[0].click(); }, 10000); } expand_comments();