SearX Poroxified Image Source

Changes original href link to proxified

目前为 2021-12-19 提交的版本。查看 最新版本

// ==UserScript==
// @name              SearX Poroxified Image Source
// @namespace    Crus
// @version           0.1
// @description    Changes original href link to proxified
// @author            NotYou
// @match            https://searx.be/search
// @match            https://searx.be/search?q=*
// @grant              none
// @run-at             document-end
// @require           https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
// @license            GPLv3
// @license-link     https://www.gnu.org/licenses/gpl-3.0.txt
// ==/UserScript==

$('.img-thumbnail').each(function() {
  let src = $(this).attr('src');
  $(this).parents('a').attr('href', src);
})