Greasy Fork is available in English.

小cj

简单test

// ==UserScript==
// @name         小cj
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  简单test
// @author       Dj
// @match        *://v.qq.com/*
// @icon         https://trademark.zbjimg.com/pattern-prod/20191009/image_3/40885990.jpg
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var a = document.getElementById("header-logo");
    a.href = 'https://jx.xmflv.com/?url='+window.location.href;
})();