diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-06-24 21:46:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-24 21:46:13 -0400 |
commit | 3e68af8666bdf9a6d8d605f7a3bb0432c8d6cb33 (patch) | |
tree | 5674e8a865b9a55983dd2e9d54a263fb0cb99105 /ext/bg/settings.html | |
parent | 96932119f8627725774ffdc66a82326d7302db30 (diff) |
Shadow DOM container for popup iframes (#623)
* Add support for injecting stylesheets into a custom parent node
* Add api.getStylesheetContent
* Add support for injecting a CSS file's content
* Add usePopupShadowDom option
* Use a per-parentNode cache
* Add support for using a shadow DOM wrapper around popup iframes
* Ignore the popup container instead of the frame
Diffstat (limited to 'ext/bg/settings.html')
-rw-r--r-- | ext/bg/settings.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/bg/settings.html b/ext/bg/settings.html index 4de70b7e..51cb14e7 100644 --- a/ext/bg/settings.html +++ b/ext/bg/settings.html @@ -187,6 +187,10 @@ </div> <div class="checkbox options-advanced"> + <label><input type="checkbox" data-setting="general.usePopupShadowDom"> Use shadow DOM container for popup</label> + </div> + + <div class="checkbox options-advanced"> <label><input type="checkbox" id="show-debug-info" data-setting="general.debugInfo" data-transform-pre="setDocumentAttribute" data-transform-post="setDocumentAttribute" data-document-attribute="data-options-general-debug-info"> Show debug information</label> </div> |