-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathticket.uni-bonn.de.user.js
49 lines (46 loc) · 1.79 KB
/
ticket.uni-bonn.de.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// ==UserScript==
// @name KIX/OTRS: Bump shown tickets, add "to English" button
// @namespace github.com/olifre/userstyles
// @match https://ticket.uni-bonn.de/*
// @updateURL https://raw.githubusercontent.com/olifre/userscripts/main/ticket.uni-bonn.de.user.js
// @version 1.2.0
// @grant none
// @description Allows to select a larger number of tickets to show, and translate replies to English.
// @author Oliver Freyermuth <[email protected]> (https://olifre.github.io/)
// @license Unlicense
// ==/UserScript==
if (/\bAction=AgentDashboard\b/.test (location.search) ) {
allConfigSelects = Array.from(document.querySelectorAll('[id^="UserDashboardPref"][id$="-Shown"]'));
allConfigSelects.forEach(
function (select) {
allOpts=Array.from(select.options);
maxCnt=allOpts.reduce((max,val) => {return Math.max(max,val.value)}, 0);
//console.log(maxCnt);
allOpts.forEach(
function (option) {
if (option.value == maxCnt)
{
//console.log("Replacing...");
option.value="100";
option.text="100";
}
}
)
}
);
}
if (/\bAction=AgentTicketCompose\b/.test (location.search) ) {
var tlBtn=document.createElement('a');
tlBtn.innerHTML="to English";
tlBtn.href='#';
tlBtn.onclick = function() {
var replyBody = document.querySelector('#cke_1_contents').getElementsByTagName('iframe')[0].contentWindow.document.body;
var lines = replyBody.innerHTML.split('<br>');
for (var l=0; l<Math.min(lines.length,4); ++l) {
lines[l]=lines[l].replace("Hallo ", "Dear ");
lines[l]=lines[l].replace("Viele Grüße", "Cheers");
}
replyBody.innerHTML = lines.join("<br>");
};
document.getElementsByClassName('Options Field')[0].appendChild(tlBtn);
}