Category: Tampermonkey

The Communicator

This script allow you to open an account and validate it using a chat header or automatically for eDesk. To get started go here.

PowerPanel Toolkit

// ==UserScript== // @name PowerPanel Toolkit // @namespace http://rsmiley.org/ // @version 1.5 // @description Because Flash sucks. // @author RogerSmiley|SeanWa // @include https://secure1.inmotionhosting.com/* // @require https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // @grant GM_setClipboard // ==/UserScript== jQuery(function($){ $(‘.account_container’).each(function(){ // Variables / Used Data var username = $(this).find(“.acct_username”).text(); var server = $(this).find(“.acct_server”).text(); var domain = $(this).find(“.acct_domain”).text(); var adminUser = $(“textarea[name=hiddenAdmin]”).val(); var…
Read more

CP Jump Error Alerts

// ==UserScript== // @name CP Jump Error Alerts // @namespace info.thegreatdivide // @description Gives alerts for hidden cp jump frames in PP // @version 1 // @grant none // @author Sean Walter // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // @include https://cpjump.inmotionhosting.com/cplogin/* // ==/UserScript== var refer = document.referrer.toString(); if(refer.startsWith(“https://secure1.inmotionhosting.com/”)){ $(‘.notice .warn’).each(function(){ alert(‘CP Jump Error:\n’ + $(this).text()); }); }

Phone Lookup

Make sure you replace “172.17.0.0” with your phone IP in two places: the ‘@include’ line and the ‘var phoneIp =’ line; // ==UserScript== // @name Phone Lookup 0.2 // @namespace https://code.thegreatdivide.info/ // @version 0.2 // @description Lookup accounts based on who is calling // @grant none // @author SeanWa // @include https://secure1.inmotionhosting.com/* // @include http://172.17.0.0/calllog.htm?phonelookup…
Read more

Phone HUD

// ==UserScript== // @name Phone HUD // @namespace http://tampermonkey.net/ // @version 0.1 // @description Phone HUD // @author Sean Walter // @include http://172.17.2.100/current // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js // ==/UserScript== jQuery(function($){ // set the ping interval in milliseconds var pingInterval = 5000; var phoneIp = ‘172.17.2.100’; var hudDiv = document.createElement(‘div’); hudDiv.id = “hudDiv”; hudDiv.style.position…
Read more