Greasy Fork is available in English.

任意修改页面文字

一行代码即可修改任意网页内容

Cài đặt script này?
Script được tác giả gợi ý

Bạn có thế thích Q-note【网站备忘录】

Cài đặt script này
// ==UserScript==
// @name         任意修改页面文字
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  一行代码即可修改任意网页内容
// @author       Priate
// @match        *://*/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    document.body.contentEditable = "true";
})();