WordPress - Sort My Favorites

Sort WordPress favorites alphabetically.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        WordPress - Sort My Favorites
// @version		0.2
// @author		Tim Berneman
// @copyright	Tim Berneman (c) 2015
// @namespace   wordpress_sort_my_favorites
// @description Sort WordPress favorites alphabetically.
// @include		/https?:\/\/profiles\.wordpress\.org\/(.*)#content-favorites\/?/
// @include		https://wordpress.org/plugins/browse/favorites/
// @grant       none
// @require     http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.js
// @run-at		document-end
//
// License: http://creativecommons.org/licenses/by-nc-sa/3.0/
//
// CHANGELOG:
// v0.1 ~ initial release - sort favorites on profiles.wordpress.org/username#content-favorites
// v0.2 ~ added more code - sort favorites on wordpress.org/plugins/browse/favorites/ as well
//
// ==/UserScript==

$(document).ready(function() {
	
	// For profiles.wordpress.org/username#content-favorites
	var sorted = $.makeArray($('#content-favorites .favorite-plugins ul li')).sort(function(a,b){
		return ( $(a).children('h3').text().trim() < $(b).children('h3').text().trim() ) ? -1 : 1;
	});
	$('#content-favorites .favorite-plugins ul').html(sorted);
	
	// For wordpress.org/plugins/browse/favorites
	var sorted = $.makeArray($('#the-list .plugin-card')).sort(function(a,b){
		return ( $(a).attr('class') < $(b).attr('class') ) ? -1 : 1;
	});
	$('#the-list').html(sorted);
});