Skip to content

Instantly share code, notes, and snippets.

View myesn's full-sized avatar
😏
保持积极和乐观

myesn

😏
保持积极和乐观
View GitHub Profile
@qwertyuiop6
qwertyuiop6 / TranslateToChineseOnYouTube.user.js
Last active January 24, 2025 03:59
🌍 🪄 🀄 Translate to Chinese automatically. Youtube自动点击翻译字幕到中文简体
// ==UserScript==
// @name YouTube字幕自动选择翻译->中文简体
// @namespace http://tampermonkey.net/
// @version 1.2
// @description translate to Chinese automatically. 自动点击字幕翻译到中文简体
// @author qwertyuiop6
// @match https://www.youtube.com/*
// @grant none
// ==/UserScript==
@steven2358
steven2358 / ffmpeg.md
Last active July 19, 2025 16:41
FFmpeg cheat sheet
@niksumeiko
niksumeiko / disable-html-form-input-autocomplete-autofill.md
Last active June 18, 2025 07:17
Disable HTML form input autocomplete and autofill

Disable HTML Form Input Autocomplete and Autofill

  1. Add autocomplete="off" onto <form> element;
  2. Add hidden <input> with autocomplete="false" as a first children element of the form.
<form autocomplete="off" method="post" action="">
    <input autocomplete="false" name="hidden" type="text" style="display:none;">
    ...