All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
- works 6 7bbab1a
| // ==UserScript== | |
| // @name Jira Points | |
| // @version 0.1.5 | |
| // @description adds issues done this week | |
| // @match https://*.atlassian.net/secure/RapidBoard.jspa* | |
| // ==/UserScript== | |
| // a function that loads jQuery and calls a callback function when jQuery has finished loading | |
| function addJQuery(callback) { | |
| var script = document.createElement("script"); |
| lkjlkjlkjlkj |
| /** copy and paste this in console (f12) after you have clicked log button on a device, tested on Calamp units **/ | |
| function checkLogs() { | |
| var flag_type = { | |
| "E":"Job on Working off", | |
| "F":"Job on Working on", | |
| "C":"Both off" | |
| }; | |
| var data = $('#headunit_positions').text() |
| // go to https://nominatim.openstreetmap.org/search?q=waikato&format=json | |
| // in chrome console paste this | |
| const list = [] | |
| const countryRegion = [ | |
| 'waikato, new zealand', | |
| 'perth, australia' | |
| ] | |
| for(let i = 0; i < countryRegion.length; i++) { | |
| const searchTerm = countryRegion[i] |
All notable changes to this project will be documented in this file. See standard-version for commit guidelines.