MAM Request Page Re-title

Re-title MAM request tab and use arrows to indicate filled status

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        MAM Request Page Re-title
// @description  Re-title MAM request tab and use arrows to indicate filled status
// @namespace   yyyzzz999
// @author yyyzzz999
// @include     https://www.myanonamouse.net/tor/viewRequest.php/*
// @version     1.2
// @grant       none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
document.title=document.title.replace('Req: ', '↑'); // unfilled request hoping for upload
document.title=document.title.replace(''', "'"); // Remove HTMl that has crept into titles
if (document.querySelector(".altlink")) document.title=document.title.replace('↑','⬇'); // Filled request ready for download
/* If they change the download link class, this still makes a nicer title.  */
})();