AO3: Set Default Posting Language

Sets English as the default language to post works to Archive of Our Own.

  1. // ==UserScript==
  2. // @name AO3: Set Default Posting Language
  3. // @author Quihi
  4. // @version 1.1
  5. // @namespace https://gf.qytechs.cn/en/users/812553-quihi
  6. // @description Sets English as the default language to post works to Archive of Our Own.
  7. // @match https://archiveofourown.org/*works/new*
  8. // @match https://www.archiveofourown.org/*works/new*
  9. // ==/UserScript==
  10.  
  11. try {
  12. document.getElementById("work_language_id").querySelectorAll("option[value='1']")[0].setAttribute("selected", "");
  13. }
  14. catch (error) {}
  15.  
  16. try {
  17. document.getElementById("language_id").querySelectorAll("option[value='1']")[0].setAttribute("selected", "");
  18. }
  19. catch (error) {}

QingJ © 2025

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