[Browser Extension] MTurk Suite no longer supported?

Discussion in 'mTurk Scripts & Resources' started by Anna_Morphic, Jul 31, 2024.

  1. HelenB

    HelenB Turker

    Messages:
    124
    Ratings:
    +115
     
  2. HelenB

    HelenB Turker

    Messages:
    124
    Ratings:
    +115
    I get the header is to big error thing and have to close out and re-sign in. I can't block ANY requesters, and I can't see any reviews. I am really really really NOT liking this.
     
  3. Mariane

    Mariane New Turker

    Messages:
    6
    Gender:
    Female
    Ratings:
    +3
  4. t0nja

    t0nja Survey Slinger

    Messages:
    1,309
    Gender:
    Female
    Ratings:
    +7,237
    • Like Like x 1
  5. ceedj

    ceedj Survey Slinger

    Messages:
    2,873
    Gender:
    Male
    Ratings:
    +6,420
    Minor update, you can get SOME of today's activity via Kads Dashboard Enhancer script (https://greasyfork.org/en/scripts/18991-mturk-worker-dashboard-enhancer) but you need to do a couple of things. First comment out the first "try" line after the headers in the script, should look like this:
    Code:
    // ==UserScript==
    // @name         [MTurk Worker] Dashboard Enhancer
    // @namespace    http://kadauchi.com/
    // @version      2.2.0
    // @description  Brings many enhancements to the MTurk Worker Dashboard.
    // @author       Kadauchi
    // @icon         http://i.imgur.com/oGRQwPN.png
    // @include      https://worker.mturk.com/dashboard*
    // @downloadURL https://update.greasyfork.org/scripts/18991/%5BMTurk%20Worker%5D%20Dashboard%20Enhancer.user.js
    // @updateURL https://update.greasyfork.org/scripts/18991/%5BMTurk%20Worker%5D%20Dashboard%20Enhancer.meta.js
    // ==/UserScript==
    
    //try { if (mturksuite) return; } catch (e) {} - COMMENT OUT THIS LINE
    
    const toNum = (string) => Number(string.replace(/[^0-9.]/g, ``));
    const toDate = (string) => string.split(`T`)[0];
    const toMoney = (number) => `$${number.toFixed(2)}`;
    const needPlus = (number) => number > 0 ? `+` : ``;
    
    etc, script continues...
    We do this because in our case, we WANT the two scripts to co-mingle. Sort of. Go to the MTS options - you have to do this through the Extensions tab in Firefox options and click the hamburger menu (...) and click Options.

    From the Dashboard section, you SHOULD uncheck "Expand This Week Enabled" as it expands for two weeks instead of one. I also unchecked the rest because they are a bit redundant (with a little extra adjustment on the pending/rejected range) but they don't hurt to leave them on, so you do you. :ay: