-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfake-config.js
More file actions
24 lines (18 loc) · 1.1 KB
/
Copy pathfake-config.js
File metadata and controls
24 lines (18 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**** CONFIG ********************/
window.ao3SaviorConfig = {
showReasons: true,
// set to false if you don't want to see why works were hidden
showPlaceholders: true,
// set to false if you don't want to see the "This work is hidden!" boxes (could result in empty works lists. Check out the "saved filters" script)
authorBlacklist: ['Hated Author 1', 'smeyer', 'work4 author'],
// excludes works with an author that exactly matches at least one term
titleBlacklist: ['The Catcher in the Rye', 'Sylvester And The Magic Pebble', 'Work 5'],
// excludes works with a title that exactly matches at least one term
tagBlacklist: ['dobby', 'jar jar binks', '*mimes', 'work1-tag2', 'work2-tag1'],
// excludes works with a tag that matches at least one term. Use * for wildcard
tagWhitelist: ['work2-tag1'],
// if a work contains any of these tags, it will not be blocked, even if it matches one of the blacklists
summaryBlacklist: ['horse-sized ducks', 'duck-sized horses', "bee's knees", 'Work 8']
// excludes works with summaries that contain at least one term
};
/********************************/