Nope. That's another reason why OW was essential for me. I hope to add that functionality in one day unless he beats me to it, but that's how it works as of now.
Hey @Ethraiel, in the part of OW that allows you to click the panda notification, and then have it open in a new tab; is there a way to check that new tab for a line of text, like "you are not qualified blah blah blah", and then close it if it does detect it? From what I understand, I can't write a standalone script to do this because it seems like you can only close a tab/window from within the script that it's created in. Since OW is the one creating this tab, is it possible? I know this is not exactly OW exclusive, so feel free to ignore as you see fit, lol.
There might be a way to do it, I haven't looked into what it takes to close a window (i probably should look into that ) I think it'd be easier to just not show the notification if you're not qualified for the HIT. if you wanted to do that i can give you the code for it. ctrl+f in tampermonkey and find Code: if (Notification.permission === "granted") { Directly under that you'd add the line Code: if (hitObject.Qualified) { Dont forget the closing bracket '}' which will go after the set timeout line... It should look like the following after you're done. Code: if (Notification.permission === "granted") { if (hitObject.Qualified) { var dansWay = hitObject.PandA; //rdan likes it to panda but i dont like just making it easy for him :P var url = hitObject.Preview; notifications[(notifications.length - 1)] = new Notification(hitObject.Requester, { body: hitObject.Title }); notifications[(notifications.length - 1)].onclick = function() { this.close(); GM_openInTab(url, true); }; setTimeout(notifications[(notifications.length - 1)].close.bind(notifications[(notifications.length - 1)]), 6500); }} else { Notification.requestPermission(); } That will make sure you're qualified for the HIT (according to amazon at least) before it shows the notification
Thank you so much! I should have known the answer was already in there somewhere. Every time I go to customize something in OW and run into a problem, I eventually find that you already had the problem and fixed it haha.
I set it use the TTS and say whether I was qualified or not on each one. I don't know why I want to torture myself by keeping up with Requesters I don't qualify for lol. But, I was actually thinking of trying to have a check box or something like that, but this sounds way better and easier lmao.
for a few days now OW keeps showing requesters that i haven't added like Foxtrot, Data Buff, Crowdsurf, etc. How can i fix this?
There will be a small update going up tonight, so any changes you may have made to the script will have to be re-applied. This should be the last update unless something breaks. 1.01.07 -Fixed blocklist (refresh no longer needed for effect). -Added worker.mturk requester page links (legacy links still work too). -Changed worker.mturk links to default for future users (current users should not be affected). -Minor TTS fix for US Female (google)
forgive me if I'm asking something that's already been answered/confirmed.. I currently run pandacrazy (using the www.mturk) and hitfinder (using worker.mturk) so if I use this OW also, wouldn't that cause PREs on hitfinder, which would result in not noticing a new hit on either HF or OW?
yup they're in the same PRE pool. If you like using HF's include list than there's really no reason to add OW to your setup
There will be a small update going up tonight, figured out some things involving TTS recently so figured i'd fix something that's been bugging me a while. Just a reminder; any changes you may have made to the script will have to be re-applied. Also if you'd like me to tag you when i do this in the future please let me know. I know @jdzane likes their notifications to panda , and @Randomacts might've been editing the "non editable variables" recently. 1.01.08 -Finally figured out how to select a TTS voice in "the legit way." ( Voices should all match their drop down descriptions now) -Added an "export to MTS/HF" button which will allow you to import your OW watchlist into Hit Finder. (Tested on HF and HF beta MTS v1.25.5) -Added a few variables up at the top of the script to change the watchlist CSS a little easier.
Every time I close OW it seems that all of my watches disappear. Is this the way the program is designed or do I have some sort of setting wrong?