Greasy Fork is available in English.

RYM: Add Dropdown Menus (Fixed Toolbar)

see title

Tính đến 16-03-2015. Xem phiên bản mới nhất.

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.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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       RYM: Add Dropdown Menus (Fixed Toolbar)
// @version    1.0
// @description    see title
// @match      http://rateyourmusic.com/*
// @match      https://rateyourmusic.com/*
// @grant      GM_addStyle
// @require    http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js 
// @namespace https://greasyfork.org/users/2625
// ==/UserScript==


$("#navtop").css('zIndex', 1); 

var communityMenu = '<li class="dropmenu">'; 
communityMenu += '<a href="/boards/board_id=1">Music</a><a href="/boards/board_id=9">Polls/Games/Surveys</a>'; 
communityMenu += '<a href="/boards/board_id=2">Site Board</a><a href="/boards/board_id=3">Film</a>'; 
communityMenu += '<a href="/boards/board_id=6">Off Topic</a>'; 
communityMenu += '<a href="/boards/board_id=9999">Video Games</a></li>'; 

var chartMenu = '<li class="dropmenu">'; 
chartMenu += '<a href="/customchart?chart_type=top&type=album&year=2015">2015 albums</a>'; 
chartMenu += '<a href="/customchart?chart_type=top&type=single&year=2015">2015 singles</a>'; 
chartMenu += '<a href="/films/chart">film charts</a>'; 
chartMenu += '<a href="/films/chart?year=2015">2015 films</a></li>'; 

$('#navtop li:nth-child(4)').addClass('topmenu').css('height', '30px').append(chartMenu); 
$('#navtop li:nth-child(5)').addClass('topmenu').css('height', '30px').append(communityMenu); 


GM_addStyle('li.topmenu li.dropmenu {  visibility: hidden; }'); 
GM_addStyle('li.dropmenu {  display: none; position: absolute; z-index: 1; font-size: 0.8em!important; background: #555!important; opacity:0.9;}'); 
GM_addStyle('li.topmenu:hover li.dropmenu {visibility: visible;}'); 

$("#navtop").css("position", "fixed");
$("#top").css("zIndex", 1); 
$("#top").css("position", "fixed"); 
$(".submenu_ext:eq(0)").before('<br><br>')