-
Notifications
You must be signed in to change notification settings - Fork 2
/
LSS_show_move_personal_right.user.js
31 lines (25 loc) · 1.29 KB
/
LSS_show_move_personal_right.user.js
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 LSS show move personal right
// @version 1.0b
// @author Crazycake, Ron31
// @description How much personal is on the buildings you want to move from.
// @include https://www.leitstellenspiel.de/buildings/*/hire
// @grant none
// ==/UserScript==
(function () {
'use strict';
if (!sessionStorage.aBuildings || JSON.parse(sessionStorage.aBuildings).userId !== user_id || JSON.parse(sessionStorage.aBuildings).lastUpdate < (new Date().getTime() - 5 * 1000 * 60)) {
$.getJSON('/api/buildings').done(data => sessionStorage.setItem('aBuildings', JSON.stringify({ lastUpdate: new Date().getTime(), value: data, userId: user_id })));
}
const aBuildings = JSON.parse(sessionStorage.aBuildings).value;
let wachen = document.getElementsByClassName("panel-heading personal-select-heading");
for (let wache of wachen) {
const wacheID = wache.getAttribute("building_id");
for (let i = 0; i < aBuildings.length; i++) {
if (wacheID == aBuildings[i].id){
const personal_count = aBuildings[i].personal_count;
wache.innerHTML += '<div id = "personal_count_Crazycake" style="float:right;">Personal: ' + personal_count + '</div>';
}
}
}
}());