Link redirects remover for Qwant Lite

Remove redirections links on QWant Lite

目前为 2023-11-16 提交的版本。查看 最新版本

// ==UserScript==
// @name        Link redirects remover for Qwant Lite
// @namespace   rawmonk
// @match       https://lite.qwant.com/
// @grant       none
// @version     1.0
// @author      rawmonk
// @license     ISC
// @description Remove redirections links on QWant Lite
// ==/UserScript==
for(var i = 0, l=document.links.length; i<l; i++) {
  elem = document.links[i];
  if (elem.href.includes("redirect")) {
    elem.href = decodeURIComponent(atob(elem.href.split("/")[5].split("?")[0]))
  }
}