// ==UserScript== // @name i-remember // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://i-remember.world/ // @icon https://www.google.com/s2/favicons?sz=64&domain=i-remember.world // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... // 将 "旧的" 字符串替换为 "新的" document.body.innerHTML = document.body.innerHTML.replace(/How lucky we are to be able to say/g, '我们有多幸运能够说'); document.body.innerHTML = document.body.innerHTML.replace(/I remember/g, '我记得'); document.body.innerHTML = document.body.innerHTML.replace(/Let's share our memories to fight Alzheimer's disease./g, '让我们一起分享记忆,对抗阿尔茨海默病。'); document.body.innerHTML = document.body.innerHTML.replace(/This site will never disappear/g, '这个网站永远不会消失'); document.body.innerHTML = document.body.innerHTML.replace(/it will store your memory forever./g, '它会永远珍藏你的记忆。'); //document.body.innerHTML = document.body.innerHTML.replace(/Let's share our memories/g, '让我们分享我们的回忆'); })();