RuanXuSong / 随意编辑页面内容

// ==UserScript==
// @name         随意编辑页面内容
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Ruan Xusong
// @match        http://*/*
// @match        https://*/*
// @license      MIT
// @grant        none
// ==/UserScript==


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