This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6bfed7
commit 3f4c047
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
A quick userscript to refresh reddit-stream every 30 seconds. | ||
|
||
|
||
// ==UserScript== | ||
// @name Reddit-Stream Auto-Refresh | ||
// @namespace nick2bad4u | ||
// @description Auto-Refreshes your Reddit-Stream.com page every 30 seconds. Modify the script and change to any time you want. | ||
// @author Nick2bad4u | ||
// @match https://reddit-stream.com/* | ||
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit-stream.com | ||
// @version 1.4 | ||
// @grant none | ||
// @homepage https://github.com/Nick2bad4u/RedditCommentStreamRefresh | ||
// @homepageURL https://github.com/Nick2bad4u/RedditCommentStreamRefresh | ||
// @supportURL https://github.com/Nick2bad4u/RedditCommentStreamRefresh/issues | ||
// @downloadURL https://raw.githubusercontent.com/Nick2bad4u/RedditCommentStreamRefresh/main/Auto-Refresh-Reddit-Stream.js | ||
// @updateURL https://raw.githubusercontent.com/Nick2bad4u/RedditCommentStreamRefresh/main/Auto-Refresh-Reddit-Stream.meta.js | ||
// @license CC-BY-SA-3.0; http://creativecommons.org/licenses/by-sa/3.0/ | ||
// @license MIT | ||
// ==/UserScript== | ||
|
||
(function () { | ||
'use strict'; | ||
setTimeout(function () { | ||
location.reload(); | ||
}, 30 * 1000); | ||
})(); |