AlexSJC 的博客

JavaScript 调用谷歌翻译

let text = 'Hello, World!'; let source = 'en'; let target = 'zh-CN'; fetch(`https://translate.googleapis.com/translate_a/single?client=gtx&sl=${sourc

AlexSJC AlexSJC 发布于 2023-04-11

EatKano 作弊

https://github.com/arcxingye/EatKano 在控制台中使用以下代码: let items = []; function run() { if (items.length === 0) { items = [...document.querySelector

AlexSJC AlexSJC 发布于 2023-04-04

YouTube 使用中文字幕

// ==UserScript== // @name YouTube 使用中文字幕 // @namespace http://tampermonkey.net/ // @version 1.3.5 // @description 在 YouTube 上自动选择简体中

AlexSJC AlexSJC 发布于 2023-04-03

网页自动刷新

var timeout = prompt("请输入刷新时间间隔(秒)"); var current = location.href; if (timeout > 0) { setTimeout('reload()', 1000 * timeout); } else { locatio

AlexSJC AlexSJC 发布于 2023-04-02