https://github.com/nick2bad4u/redditcommentstreamrefresh
Reddit-stream.com Auto-Refresh UserScript
https://github.com/nick2bad4u/redditcommentstreamrefresh
userscript userscripts
Last synced: 10 months ago
JSON representation
Reddit-stream.com Auto-Refresh UserScript
- Host: GitHub
- URL: https://github.com/nick2bad4u/redditcommentstreamrefresh
- Owner: Nick2bad4u
- License: unlicense
- Archived: true
- Created: 2024-05-03T03:33:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-23T03:40:46.000Z (about 1 year ago)
- Last Synced: 2025-02-17T08:33:29.897Z (11 months ago)
- Topics: userscript, userscripts
- Language: JavaScript
- Homepage: https://userscript.github.typpi.online/
- Size: 247 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
[](https://github.com/Nick2bad4u/RedditCommentStreamRefresh/actions/workflows/codeql.yml)
[](https://github.com/Nick2bad4u/RedditCommentStreamRefresh/actions/workflows/dependabot/dependabot-updates)
[](https://github.com/Nick2bad4u/RedditCommentStreamRefresh/actions/workflows/dependency-review.yml)
[](https://github.com/Nick2bad4u/RedditCommentStreamRefresh/actions/workflows/pages/pages-build-deployment)
[](https://github.com/Nick2bad4u/RedditCommentStreamRefresh/actions/workflows/scorecards.yml)
[](https://github.com/Nick2bad4u/RedditCommentStreamRefresh/actions/workflows/semgrep.yml)

A quick userscript to refresh reddit-stream every 30 seconds.
```userscript
// ==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.6
// @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);
})();
```