使用油猴脚本图片代理加速

使用油猴脚本图片代理加速

November 21, 2022
// ==UserScript==
// @name         图片代理
// @namespace    https://htmltomd.com/
// @version      0.1
// @description  image proxy by wp.com
// @author       usdtvpn.com
// @match        https://you.com/*
// @match        https://www.you.com/*
// @grant none
// ==/UserScript==

(function () {
    'use strict';
    let images = document.getElementsByTagName('img');


    for (let item of images) {
        item.src = item.src.replace("https://", "https://i3.wp.com/");

        Object.keys(item.dataset).forEach(function (key) {
            item.dataset[key] = item.dataset[key].replace("https://", "https://i3.wp.com/");
        });
    }

})();

把you.com替换成想应用的网站即可。

评论区: