fmm / Remove tabindex

// ==UserScript==
// @name         Remove tabindex
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove tabindex from #colorbox preventing Select2 interaction
// @author       fmm
// @match        https://metcash.retailpath.com.au/*
// @license      MIT
// @updateURL    https://openuserjs.org/meta/fmm/Remove_tabindex.meta.js
// ==/UserScript==

(function() {
    'use strict';

    var colorBoxObject = document.getElementById("colorbox");
    colorBoxObject.removeAttribute("tabindex");

    document.styleSheets[0].insertRule('.select2-dropdown { z-index: 10000 }', 0);
})();