Auto Anon

If an askbox permits anonymous asks, enable it automatically

目前为 2021-12-11 提交的版本。查看 最新版本

// ==UserScript==
// @name         Auto Anon
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  If an askbox permits anonymous asks, enable it automatically
// @author       Hex
// @match        https://www.tumblr.com/ask_form/*
// @icon         https://www.tumblr.com/favicon.ico
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var ask_checkbox = document.getElementById("ask_anonymously");

    if (ask_checkbox) {
        ask_checkbox.click();
    }
    // Your code here...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址