09/02 - Peachy Friday!

Status
Not open for further replies.

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
64,979
Reaction score
145,484
Points
2,088
Gender
Male
Hey guys!

Popped in to ask a quick question....
Does anyone know of a script or a program, etc... that loads a specific URL every X hours? Can't seem to find anything useful online.
Can do it in javascript or some refresher extensions (Auto Refresh Plus) depending on exactly what you want to do.
 
Last edited:
  • Like
Reactions: Wilma

Wilma

I have no idea what I'm doing
Contributor
Joined
Jan 12, 2016
Messages
463
Reaction score
1,148
Points
468
Gender
Female
Can do it in javascript or some refresher extensions depending on exactly what you want to do.
Page needs to run constantly but redirects or gets stuck every now and then. I did the refresh thing but when it redirects, it just refreshes the new page.. I need something to, every 2 hours, refresh exactly www.thispage.come.
 
  • Like
Reactions: Kerek

WalkingEmphasis

Banned
Banned
Contributor
Joined
Apr 11, 2016
Messages
4,424
Reaction score
8,154
Points
888
i'm still on the landing page so could screenshot but lazy on my mac.
Nah, didn't get a code. So I said "I didn't get a confirmation code and took a screenshot to prove it. Instead, my ID is ________". I've had to do that countless times before and I've never gotten a rejection. But we'll see how this one goes.
 
  • Like
Reactions: bxpretzel

bxpretzel

Ari Gold
Contributor
HIT Poster
Joined
Jan 14, 2016
Messages
11,163
Reaction score
24,621
Points
1,438
Location
Appalachia
Nah, didn't get a code. So I said "I didn't get a confirmation code and took a screenshot to prove it. Instead, my ID is ________". I've had to do that countless times before and I've never gotten a rejection. But we'll see how this one goes.
i'll do it too and we can rage mail the requester together if we are rejected. but do i have to take a screenshot? i don't feel like it hahaha
 
  • Like
Reactions: WalkingEmphasis

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
64,979
Reaction score
145,484
Points
2,088
Gender
Male
Page needs to run constantly but redirects or gets stuck every now and then. I did the refresh thing but when it redirects, it just refreshes the new page.. I need something to, every 2 hours, refresh exactly www.thispage.come.
Depending on what "redirects" and "gets stuck" means you can do something like

Code:
// ==UserScript==
// @name         ThisPage
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.mturk.com/mturk/findhits?thispage
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
// ==/UserScript==

var myWindow = window.open('http://www.thispage.com','ThisPage');
setTimeout(function(){
    window.open('http://www.thispage.com','ThisPage');
},2*60*60*1000);
If you don't mind having two tabs open for it.

It runs on https://www.mturk.com/mturk/findhits?thispage but you can change that too.
 
Last edited:
Status
Not open for further replies.