Advertisement
Guest User

Not working

a guest
Oct 24th, 2017
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. // ==UserScript==
  2. // @name ao3 savior config
  3. // @description Config script for AO3 Savior userscript
  4. // @namespace ao3
  5. // @include http*://archiveofourown.org/*
  6. // @grant none
  7. // @version 1.0
  8. // ==/UserScript==
  9.  
  10.  
  11. ;(function() {
  12. /**** CONFIG ********************/
  13. window.ao3SaviorConfig = {
  14. // Edit this file to configure AO3 Savior, then ensure that both 'ao3 savior' and 'ao3 savior
  15. // config' userscripts are enabled in Tampermonkey/Greasemonkey. This lets you avoid having to
  16. // replace the config block within AO3 Savior whenever you update - since it's stored here in a
  17. // separate userscript, and you should only update this one manually.
  18.  
  19.  
  20. // Set to false if you don't want to see why works were hidden.
  21. showReasons: true,
  22.  
  23. // Set to false if you don't want to see the expandable "This work is hidden!" boxes.
  24. showPlaceholders: true,
  25.  
  26. // Exclude works with an author that exactly matches at least one term.
  27. authorBlacklist: ['Hated Author 1', 'smeyer'],
  28.  
  29. // Excludes works with a title that exactly matches at least one term
  30. titleBlacklist: ['The Catcher in the Rye', 'Sylvester And The Magic Pebble'],
  31.  
  32. // Exclude works with a tag that matches at least one term. Use * for wildcard.
  33. tagBlacklist: ['Threesome - M/M/M', 'Gay', 'Yaoi', 'Boypussy', 'M/M', 'Mpreg', 'Father/Son Incest', 'Brother/Brother Incest'],
  34.  
  35. // Include works matching these tags, even if they also match any of the blacklists.
  36. tagWhitelist: ['glitter'],
  37.  
  38. // Exclude works with summaries that contain at least one term
  39. summaryBlacklist: ['horse-sized ducks', 'duck-sized horses', "bee's knees"]
  40. };
  41. /********************************/
  42. }());
  43.  
  44. //# sourceMappingURL=ao3-savior-config.user.js.map
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement