Auto Anon

If an askbox permits anonymous asks, enable it automatically

  1. // ==UserScript==
  2. // @name Auto Anon
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description If an askbox permits anonymous asks, enable it automatically
  6. // @author Hex
  7. // @match https://www.tumblr.com/ask_form/*
  8. // @icon https://www.tumblr.com/favicon.ico
  9. // @license MIT
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. var ask_checkbox = document.getElementById("ask_anonymously");
  17.  
  18. if (ask_checkbox) {
  19. ask_checkbox.click();
  20. }
  21. // Your code here...
  22. })();

QingJ © 2025

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