Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/f0b332763ad94eb78ed50a7370099d0c.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript== // @name (MTurk) Show Qualtrics Survey Progress // @namespace https://greasyfork.org/en/users/367017-shinobu-oshino // @version 1.23 // @description Shows hidden progress on qualtrics surveys // @author letsfindcommonground (mktemp@pm.me) // @match https://*.qualtrics.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; let oldProgressBar = document.querySelector('#ProgressBar'); if(oldProgressBar) { oldProgressBar.style.display = 'none'; } if(!(window.QSettings && window.QSettings.pt)) { return; } let progress = window.QSettings.pt.ProgressPercent; document.querySelector('body').insertAdjacentHTML('afterbegin', ` ${progress}% `); let indicator = document.querySelector('#tampermonkey-progress-indicator'); indicator.style.cssText = `color: white; background: black; padding: 8px 12px; position: absolute; left: 0; top: 0; font-family: 'Roboto', sans-serif; font-size: 0.9em; border-bottom-right-radius: 8px;`; let oldXHROpen = window.XMLHttpRequest.prototype.open; window.XMLHttpRequest.prototype.open = function(method, url, async, user, password) { if(url.includes('next?rand=')) { this.addEventListener('load', function() { const result = JSON.parse(this.response); indicator.textContent = `${result.ProgressPercent}%`; }); } return oldXHROpen.apply(this, arguments); }; })();