Greasy Fork is available in English.

Lite Duckduckgo Remove Tracking

Remove tracking lite Duckduckgo using get method

// ==UserScript==
// @name         Lite Duckduckgo Remove Tracking
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove tracking lite Duckduckgo using get method
// @author       Benyamin Limanto <me@benyamin.xyz>
// @match        https://lite.duckduckgo.com/*
// @icon         https://icons.duckduckgo.com/ip2/duckduckgo.com.ico
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var l = document.querySelectorAll("td a");
    for (var i=0; i<l.length; i++) {
        var el = l[i];
        el.attributes["href"].value = decodeURIComponent(el.attributes["href"].value.replace("//duckduckgo.com/l/?","").split("&")[0].replace("uddg=",""));
    }
})();