𝓽𝓮𝓽𝓱𝔂𝓼 (@Neuroplexus)用户脚本: 论坛帖子, 编辑时自定义编辑原因 中发帖

// ==UserScript==
// @name Linux.do Post Edit Reason
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Adds a custom input for edit reason and uses its value for PUT requests to linux.do/posts/*.
// @author Shinplex
// @match https://linux.do/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

const originalXhrOpen = X...