- Joined
- Jan 12, 2016
- Messages
- 5,000
- Reaction score
- 16,977
- Points
- 2,538
- Gender
- Male
Sometimes when people paste scripts in here it adds that @Name tag that screws it up,I get invalid userscript
Code:
// ==UserScript==
// @name A9 - None of these dresses are funny
// @namespace https://www.mturkcrowd.com/members/aveline.7/
// @version 1.0
// @description Probably does nothing.
// @author aveline
// @icon https://i.imgur.com/jsju8Wy.png
// @include /^https://(www\.mturkcontent|s3\.amazonaws)\.com/
// @require http://code.jquery.com/jquery-3.2.1.min.js
// @grant none
// ==/UserScript==
document.querySelector(`#q1-neither`).click();
document.querySelector(`#cq1-asin1`).click();
document.querySelector(`#q2-neither`).click();
document.querySelector(`#cq2-asin1`).click();
document.addEventListener("keydown", function(e){
if (e.keyCode == 13) { // Enter
document.querySelector(`#submitButton`).click();
}
});