We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 640d656 commit 325e1baCopy full SHA for 325e1ba
dist.zip
50.9 KB
src/content_script/scores/ScoreTools.svelte
@@ -20,6 +20,7 @@
20
<option value={Tools.CATEGORY_WEIGHTING}
21
>Category Weighting and Advanced See All Possibilities</option
22
>
23
+ <option value={Tools.NONE}>None</option>
24
</select>
25
</div>
26
src/content_script/scores/index.ts
@@ -28,6 +28,7 @@ import ScoreTools from "./ScoreTools.svelte";
28
29
export enum Tools {
30
CATEGORY_WEIGHTING = "CATEGORY_WEIGHTING",
31
+ NONE = "NONE"
32
}
33
34
function waitForElm(selector: string): Promise<Element | null> {
0 commit comments