Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Userscripts for CTR
This project contains userscripts to fix CTR system.
This project contains userscripts to fix CTR system in modern browsers
## Setup development environment
1. In order to use these scripts you need to install **tampermonkey** extension in your browser at https://tampermonkey.net/.
1. In order to use these scripts you need to install **tampermonkey** extension in your browser from https://tampermonkey.net/.
2. Enable tampermonkey in your browser after installing it.
3. To upload a userscript in tampermonkey first click on the file then click on the **Raw** button. It will redirect you at tampermonkey and ask you to install this userscript. After clicking **Install** button you will find the userscript in tampermonkey's dashboard.
4. Make sure the userscript is enabled.
Expand Down
8 changes: 7 additions & 1 deletion ctr_dropdowns.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@
// @description fix dropdowns in CTR-> My Reports
// @author Erland
// @match https://apps.ne.capgemini.com/Applications/CTR/
// @match https://apps.ne.capgemini.com/Applications/ctr/
// @match https://apps.ne.capgemini.com/applications/CTR/
// @match https://apps.ne.capgemini.com/applications/ctr/
// @match https://apps-x.nordic.capgemini.com/Applications/CTR/
// @match https://apps-x.nordic.capgemini.com/Applications/ctr/
// @match https://apps-x.nordic.capgemini.com/applications/CTR/
// @match https://apps-x.nordic.capgemini.com/applications/ctr/
// @match https://apps.ne.capgemini.com/Applications//CTR/
// @match https://apps.ne.capgemini.com/Applications//ctr/
// @grant none

// ==/UserScript==
Expand All @@ -22,4 +28,4 @@ window.onload = function() {
});
});
});
}
}
6 changes: 6 additions & 0 deletions ctr_table_styles.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@
// @description fix table styles in CTR-> Week
// @author Erland
// @match https://apps.ne.capgemini.com/Applications/CTR/
// @match https://apps.ne.capgemini.com/Applications/ctr/
// @match https://apps.ne.capgemini.com/applications/CTR/
// @match https://apps.ne.capgemini.com/applications/ctr/
// @match https://apps-x.nordic.capgemini.com/Applications/CTR/
// @match https://apps-x.nordic.capgemini.com/Applications/ctr/
// @match https://apps-x.nordic.capgemini.com/applications/CTR/
// @match https://apps-x.nordic.capgemini.com/applications/ctr/
// @match https://apps.ne.capgemini.com/Applications//CTR/
// @match https://apps.ne.capgemini.com/Applications//ctr/
// @grant none
// ==/UserScript==

Expand Down