LeetCode discuss solution automatically filters JS

Easy-to-edit userscript to filter solution tab for Leetcode solutions. In the example it filters to Javascript

Від 02.09.2022. Дивіться остання версія.

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 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.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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 discuss solution automatically filters JS
// @description  Easy-to-edit userscript to filter solution tab for Leetcode solutions. In the example it filters to Javascript
// @namespace    https://github.com/marcodallagatta/userscripts/raw/main/leetcode-filter-solutions
// @version      2022.09.02.20.15
// @author       Marco Dalla Gatta
// @match        https://leetcode.com/problems/*/discuss/*
// @icon         https://icons.duckduckgo.com/ip2/leetcode.com.ico
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {

    const filter = 'javascript';

    'use strict';
    if (!window.location.toString().includes('tag')) {
        window.location += `?currentPage=1&orderBy=most_votes&query=&tag=${filter}`
    }
})();