Greasy Fork is available in English.

修改title-888051

修改title

// ==UserScript==
// @name     修改title-888051
// @version  2.3
// @description   修改title
// @grant    none
// @match    https://cnki.net/*
// @require  https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js
// @namespace https://greasyfork.org/users/824980
// ==/UserScript==

(function(){
	console.log("start");
	var name = $(".unit-box1 h4").html();
    console.log(name);
    $("title").html(name);
})()