-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.txt
27 lines (26 loc) · 832 Bytes
/
todo.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Brainstorms:
Options:
Hide points at all times
Hide points until voted
Hide names at all times
Hide names until voted
Show all on X's-comments page
Hide submitter names
Hide submission points
mangle usernames?
On select / double-click of a username in text, reveal & highlight if it matches?
Reveal negative-valued comments (as they may be unjustly-downvoted)
Page action?
Allows page-specific choices, ie for your comments
Save by url? By regex?
Methodology:
Inject CSS into page, depending on above options.
Inject script into page, detecting those field types, and annotating for CSS.
Could make same at all times, in mainifest:
content_scripts:[
{
matches:["urlglob"]
, js:["jsfiles"]
, run_at: "document_end" // runs when DOM is loaded, before other scripts.
}
]