Leetcode auto delete local submissions

Useful when you try to solve a problem again if you don't want to see your past submission. This script removes the cache and set the leetcode language to python3 (feel free to change it).

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Leetcode auto delete local submissions
// @version      2023-12-10
// @description  Useful when you try to solve a problem again if you don't want to see your past submission. This script removes the cache and set the leetcode language to python3 (feel free to change it). 
// @author       You
// @match        https://leetcode.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=leetcode.com
// @grant        none
// @license MIT 
// @namespace https://greasyfork.org/users/1235671
// ==/UserScript==

(function() {
    'use strict';
    localStorage.clear();
    localStorage.setItem("global_lang","python3");
    localStorage.setItem("QD_SHOWN_DYNAMIC_LAYOUT_MODAL","true");
})();