您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Displays a warning message before making a comment on Reddit.
// ==UserScript== // @name Reddit Comment Warning // @namespace http://tampermonkey.net/ // @version 1.0 // @description Displays a warning message before making a comment on Reddit. // @author Your Name // @match https://www.reddit.com/* // @grant none // ==/UserScript== (function() { 'use strict'; // Override the default comment form submission document.querySelector('form[action="/comment"]').addEventListener('submit', function(event) { // Prompt the warning message var confirmation = confirm("Are you sure you want to talk to this loser?"); // If the user cancels the submission, prevent the comment from being posted if (!confirmation) { event.preventDefault(); } }); })();