ao3 savior config

Config script for AO3 Savior userscript

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램을 설치해야 합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name          ao3 savior config
// @description   Config script for AO3 Savior userscript
// @namespace     ao3
// @include       http*://archiveofourown.org/*
// @grant         none
// @version       1.16
// ==/UserScript==



(function () {
  'use strict';

  /**** CONFIG ********************/
  window.ao3SaviorConfig = {
    // Edit this file to configure AO3 Savior, then ensure that both 'ao3 savior' and 'ao3 savior
    // config' userscripts are enabled in Tampermonkey/Greasemonkey. This lets you avoid having to
    // replace the config block within AO3 Savior whenever you update - since it's stored here in a
    // separate userscript, and you should only update this one manually.


    // Set to false if you don't want to see why works were hidden.
    showReasons: true,

    // Set to false if you don't want to see the expandable "This work is hidden!" boxes.
    showPlaceholders: true,

    // Set to true if you want to be alerted when visiting a blacklisted work from outside AO3
    alertOnVisit: false,

    // Exclude works with an author that exactly matches at least one term.
    authorBlacklist: ['Hated Author 1', 'smeyer'],

    // Excludes works with a title that matches at least one term. Use * for wildcard.
    titleBlacklist: ['The Catcher in the Rye', 'Sylvester And The Magic Pebble', 'Five times*'],

    // Exclude works with a tag that matches at least one term. Use * for wildcard.
    tagBlacklist: ['dobby', 'jar jar binks', '*mimes'],

    // Include works by these authors, even if they also match any of the blacklists.
    authorWhitelist: ['astolat'],

    // Include works matching these tags, even if they also match any of the blacklists.
    tagWhitelist: ['glitter'],

    // Exclude works with summaries that contain at least one term
    summaryBlacklist: ['horse-sized ducks', 'duck-sized horses', "bee's knees"]
  };
  /********************************/

}());