Rent First

Moves rent to the top on Numbeo's Cost of Living calculator

  1. // ==UserScript==
  2. // @name Rent First
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Moves rent to the top on Numbeo's Cost of Living calculator
  6. // @author https://github.com/NoahBPeterson
  7. // @match https://www.numbeo.com/cost-of-living/*
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. var table_children = document.getElementsByClassName("category_title")[7].parentElement.parentElement.parentElement.children;
  16. for (let i = 0; i < 5; i++) {
  17. document.getElementsByClassName("category_title")[7].parentElement.parentElement.parentElement.insertBefore(table_children[58], document.getElementsByClassName("category_title")[7].parentElement.parentElement.parentElement.firstChild);
  18. }
  19. })();