Prolific Export

Forum export for surveys on Prolific

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Prolific Export
// @namespace    https://github.com/Kadauchi/
// @version      1.1.0
// @description  Forum export for surveys on Prolific
// @author       Kadauchi
// @icon         http://i.imgur.com/oGRQwPN.png
// @include      https://www.prolific.ac/studies*
// @grant        GM_setClipboard
// ==/UserScript==

function exportStudy (id) {
  const study = document.getElementById(id);
  const attrs = study.getElementsByTagName(`li`);

  const link = study.querySelector(`a[href^="/studies/"]`).href;
  const title = study.getElementsByTagName(`h3`)[0].textContent;
  const researcher = attrs[0].textContent.split(':')[1];
  const reward = attrs[1].textContent.split(':')[1].split(`$`)[0];
  const perhour = attrs[2].textContent.split(':')[1];
  const available = attrs[3].textContent.split(':')[1];
  const time = attrs[4].textContent.split(':')[1];
  const completion = attrs[5].textContent.split(':')[1];
  const exchangeRate = localStorage.getItem(`exchangeRate`);

  const exportcode =
        `[table][tr][td]` +
        `[b][size=5][color=red]PROLIFIC STUDY[/color][/size][/b]\n` +
        `[b]Title:[/b] [url=${link}]${title}[/url]\n` +
        `[b]Hosted by : [/b] ${researcher}\n` +
        `[b]Reward : [/b][color=green][b] ${reward}[/color] ${exchangeRate ? `| [color=green]$${(+exchangeRate * +reward.replace(/[^0-9.]/g, ``)).toFixed(2)}[/color]` : ``}[/b]\n` +
        `[b]Avg. Reward Per Hour : [/b] ${perhour} ${exchangeRate ? `| $${(+exchangeRate * +perhour.replace(/[^0-9.]/g, ``)).toFixed(2)}/hr` : ``}\n` +
        `[b]Available Places : [/b] ${available}\n` +
        `[b]Maximum Allowed Time : [/b] ${time}\n` +
        `[b]Avg. Completion Time : [/b] ${completion}\n` +
        `[/td][/tr][/table]`
  ;

  GM_setClipboard(exportcode);
  alert(`Forum export has been copied to your clipboard.`);
}

for (let elem of document.getElementsByClassName(`study`)) {
  elem.insertAdjacentHTML(
    `beforebegin`,
    `<button class="exporter" type="button" data-id="${elem.id}">Forum Export</button>`
  );
}

document.addEventListener(`click`, function (event) {
  const elem = event.target;

  if (elem.matches(`.exporter`)) {
    exportStudy(elem.dataset.id);
  }
});