JSS - Edit Buttons & No Category On Top

Put edit links next to app names and move the no category category to the top of the page

As of 08. 01. 2016. See the latest version.

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 or Violentmonkey 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         JSS - Edit Buttons & No Category On Top
// @namespace    http://your.homepage/
// @version      0.2
// @description  Put edit links next to app names and move the no category category to the top of the page
// @author       Ryan Meyers
// @match        https://serenity.local:8443/mobileDeviceApps.html*
// @grant        none
// ==/UserScript==

$.each($('.group-item > td > a'), function(i,v){$(v).parent().append("<a href=\""+$(v).attr("href").replace("o=r","o=u")+"\" style=\"font-size:7pt\">edit</a>");});
$.each($('tr.group-item-no-category-assigned'), function(i,v){$('tbody').prepend($(v))});
$('tbody').prepend($('tr.no-category-assigned'));