diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-19 15:42:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-19 15:42:44 -0500 |
commit | 1b1b24ab35f80ee22ddbdc2172a25b9442bd5dce (patch) | |
tree | bddbffb9fcb1dac9ceece71e69dc916e3e0c0ae8 /ext/bg/data | |
parent | dcb75cce1e3590b4f1469c01a721e3ef3b319888 (diff) |
Entry indicator update (#1134)
* Move entry current indicator rules
* Simplify rules
* Add popupCurrentIndicatorMode option
* Add option to settings page
* Expose popupCurrentIndicatorMode
* Restore asterisk current indicator
* Implement dot
* Update action button vars
* Fix tests
* Add none option
* Add triangle option
Diffstat (limited to 'ext/bg/data')
-rw-r--r-- | ext/bg/data/options-schema.json | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index 85275952..b6b11b66 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -109,7 +109,8 @@ "useSecurePopupFrameUrl", "usePopupShadowDom", "usePopupWindow", - "maximumClipboardSearchLength" + "maximumClipboardSearchLength", + "popupCurrentIndicatorMode" ], "properties": { "enable": { @@ -265,6 +266,11 @@ "type": "integer", "default": 1000, "minimum": 0 + }, + "popupCurrentIndicatorMode": { + "type": "string", + "enum": ["none", "asterisk", "triangle", "bar-left", "bar-right", "dot-left", "dot-right"], + "default": "bar-left" } } }, |