forked from jerone/UserScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path208433.user.js
More file actions
31 lines (24 loc) · 831 Bytes
/
Copy path208433.user.js
File metadata and controls
31 lines (24 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// ==UserScript==
// @name Dakar Extender
// @description Highlight riders by certain country in standings lists.
// @namespace http://userscripts.org/scripts/show/208433
// @version 2
// @copyright 2014+, jerone (http://jeroenvanwarmerdam.nl)
// @license GNU GPLv3
// @grant none
// @require http://code.jquery.com/jquery-2.0.3.min.js
// @icon https://lh6.googleusercontent.com/-pKPBVGEVXk0/UsXXxo0S9JI/AAAAAAAACp0/0N_pV4AqDMY/s512-no/Icon_Dakar2+%25281%2529.png
// @include *dakar.com/*
// ==/UserScript==
(function(){
var countryCode = "NLD";
$(function(){
$("tr:contains('\("+countryCode+"\)')").css("font-weight","bold");
});
})();
// ==UserStats==
// Chars (excl. spaces): 610
// Chars (incl. spaces): 716
// Words: 65
// Lines: 29
// ==/UserStats==