Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/51d7d7afdcba7aa9de25bdd49158a573.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name CH Hide Annoying MTurk Announcements
// @author clickhappier
// @namespace clickhappier
// @version 0.1c
// @description Hides annoying global announcement messages from Amazon, on every MTurk page except the Dashboard.
// @match https://www.mturk.com/*
// @exclude https://www.mturk.com/mturk/dashboard*
// @require http://code.jquery.com/jquery-latest.min.js
// @grant GM_log
// @downloadURL https://update.greasyfork.icu/scripts/7982/CH%20Hide%20Annoying%20MTurk%20Announcements.user.js
// @updateURL https://update.greasyfork.icu/scripts/7982/CH%20Hide%20Annoying%20MTurk%20Announcements.meta.js
// ==/UserScript==
// hit promotion messages
$('a[href*="https://requester.mturk.com/business_solutions_inquiries?referral=banner"]').closest('div[class*="message"]').remove();
// timechange/maintenance message
$('h3:contains("Scheduled Maintenance between")').parent().remove();