Change specific word in webpages
当前为
// ==UserScript==
// @name Change word in webpages
// @description Change specific word in webpages
// @namespace https://greasyfork.org/users/3718
// @include http://*
// @include https://*
// @exclude *.google.com/*
// @version 1.0
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js
// ==/UserScript==
$('body').html($('body').html().replace(/old_word_here/g,'new_word_here'));