diff options
author | Ajay Ramachandran <[email protected]> | 2020-06-16 22:00:49 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-06-16 22:00:49 -0400 |
commit | 1570bfdd0ad2703f7c553542c53f368d90f3a794 (patch) | |
tree | bf48ea48dadd5f449a979cd061336ac72d1f5037 | |
parent | e511de9f88b551763f2389051c8375fda7bf53c3 (diff) | |
download | SponsorBlock-1570bfdd0ad2703f7c553542c53f368d90f3a794.tar.gz SponsorBlock-1570bfdd0ad2703f7c553542c53f368d90f3a794.zip |
Fixed missing options from options page
-rw-r--r-- | manifest/manifest.json | 2 | ||||
-rw-r--r-- | public/options/options.html | 34 |
2 files changed, 35 insertions, 1 deletions
diff --git a/manifest/manifest.json b/manifest/manifest.json index cb6388e5..3033948e 100644 --- a/manifest/manifest.json +++ b/manifest/manifest.json @@ -1,7 +1,7 @@ { "name": "__MSG_fullName__", "short_name": "__MSG_Name__", - "version": "2.0", + "version": "2.0.1", "default_locale": "en", "description": "__MSG_Description__", "content_scripts": [{ diff --git a/public/options/options.html b/public/options/options.html index 3cd69b01..67384842 100644 --- a/public/options/options.html +++ b/public/options/options.html @@ -151,6 +151,40 @@ <br/> <br/> + + <div option-type="toggle" sync-option="unsubmittedWarning"> + <label class="switch-container" label-name="__MSG_unsubmittedWarning__"> + <label class="switch"> + <input type="checkbox" checked> + <span class="slider round"></span> + </label> + </label> + + <br/> + <br/> + + <div class="small-description">__MSG_unsubmittedWarningDescription__</div> + </div> + + <br/> + <br/> + + <div option-type="toggle" sync-option="forceChannelCheck"> + <label class="switch-container" label-name="__MSG_forceChannelCheck__"> + <label class="switch"> + <input type="checkbox" checked> + <span class="slider round"></span> + </label> + </label> + + <br/> + <br/> + + <div class="small-description">__MSG_whatForceChannelCheck__</div> + </div> + + <br/> + <br/> <div option-type="toggle" toggle-type="reverse" sync-option="hideVideoPlayerControls"> <label class="switch-container" label-name="__MSG_showButtons__"> |