Deactivating Speed Kit

Global Deactivation

In order to deactivate Speed Kit for all users, open your dashboard, enter the “Settings” section on the left and click on the "Deactivate Speed Kit" button.

In the following screen you have the option send us a reason for the deactivation and to confirm the deactivation. Please note that the deactivation will take a short moment to process. After that Speed Kit will not handle any traffic for any user, until it is reactivated.

You can turn Speed Kit back on any time by clicking the "Activate Speed Kit" button in "Settings".

Session-Local Deactivation

//disconnect
navigator.serviceWorker.controller.postMessage({type: "disconnect"});
//connect
navigator.serviceWorker.controller.postMessage({type: "connect"});

To deactivate Speed Kit for your current browser session (e.g. for testing purposes) while remaining functional for all other users, open the developer console in your browser and enter the code snippet with {type: "disconnect"}. To activate Speed Kit again, enter the code snippet with {type: "connect"} into your console.

Last updated