// ==UserScript== // @name SMF Convert Dropdown // @namespace http://www.JayBachatero.com/ // @description Shows a drop down of convert topics. // @include http://www.simplemachines.org/community/index.php?action=post* // @include http://simplemachines.org/community/index.php?action=post* // ==/UserScript== function smfConverters() { // This is offset in pixels for witdh and height. Change this to make it work with your screen resolution var widthOffset = 50; var heightOffset = 640; var scripturl = "http://www.simplemachines.org/community/index.php"; var message = "Try using the converter in this topic: "; var bodyheight = heightOffset; // Categories to show. var converters = new Array( [000000, 'Select One', 'disabled="disabled" selected="selected"'], [140741, 'Convert.php', ''], [141395, 'e107 0.7.7', ''], [146211, 'IPB 1.3.x', ''], [145284, 'IPB 2.2.x', ''], [145191, 'MyBB 1.2.x', ''], [142124, 'phpBB 2.0.19+', ''], [145652, 'SimpleBoard 1.0 & 1.1', ''], [140744, 'XMB 1.9.6', ''], [122338, 'YaBB 2.1', ''], [140776, 'YaBB SE 1.5.4', ''] ); var dropdownShow = document.createElement('div'); var dropdownList = '
'; // Show it dropdownShow.innerHTML = dropdownList; document.body.insertBefore(dropdownShow, document.body.lastChild); } smfConverters();