🏠 返回首頁 

Greasy Fork is available in English.

AO3 Bookmarks Default to Private (Etiquette helper)

Set AO3 bookmarks to default to private. This makes ao3 bookmarking etiquette a little easier. (Note, this is included in my AO3 Re-reread Savior userscript)


安装此脚本?
  1. // ==UserScript==
  2. // @name AO3 Bookmarks Default to Private (Etiquette helper)
  3. // @namespace Ellililunch AO3 USERSCIPTS
  4. // @description Set AO3 bookmarks to default to private. This makes ao3 bookmarking etiquette a little easier. (Note, this is included in my AO3 Re-reread Savior userscript)
  5. // @version 0.1
  6. // @author Ellililunch
  7. // @match *archiveofourown.org/works/*
  8. // @match *archiveofourown.org/series/*
  9. // @license GNU GPLv3
  10. // ==/UserScript==
  11. // new users - scroll right to the bottom
  12. (function() {
  13. // automatically checks the Private Bookmark checkbox. Set to false if you don't want this.
  14. document.getElementById("bookmark_private").checked = true;
  15. })();