Anyone else do the Deep Dialogue paraphrasing HITs? They disable copy/paste to try to force you to paraphrase, but it's annoying because retyping addresses and names is pointless. Here's a little script to re-enable copy/paste for these tasks.
Code:
// ==UserScript==
// @name
Deep Dialogue
// @namespace
http://tampermonkey.net/
// @version
0.1
// @include
/^http(s)?://dstc-data-collection\.appspot\.com/
// @grant
none
// ==/UserScript==
(function() {
'use strict';
var elems = document.querySelectorAll(".noselect");
[].forEach.call(elems, function(el) {
el.classList.remove("noselect");
});
})();