diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-19 20:07:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-19 20:07:55 -0500 |
commit | 443d6d1956691861a5e0203e33726b8c2aa93eef (patch) | |
tree | c302124766dde3f87454682508331b4647c71e8f /ext/bg/data | |
parent | 8454431cdbc026e56c4879c5fc0133647a6f75ca (diff) |
Popup action bar options (#1140)
* Add options for action bar visibility and location
* Add settings
* Update styles
* Expose properties
* Update styles
* Update tests
Diffstat (limited to 'ext/bg/data')
-rw-r--r-- | ext/bg/data/options-schema.json | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index b6b11b66..7fed4909 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -110,7 +110,9 @@ "usePopupShadowDom", "usePopupWindow", "maximumClipboardSearchLength", - "popupCurrentIndicatorMode" + "popupCurrentIndicatorMode", + "popupActionBarVisibility", + "popupActionBarLocation" ], "properties": { "enable": { @@ -271,6 +273,16 @@ "type": "string", "enum": ["none", "asterisk", "triangle", "bar-left", "bar-right", "dot-left", "dot-right"], "default": "bar-left" + }, + "popupActionBarVisibility": { + "type": "string", + "enum": ["auto", "always"], + "default": "auto" + }, + "popupActionBarLocation": { + "type": "string", + "enum": ["left", "right", "top", "bottom"], + "default": "right" } } }, |