add option for iframe popups
This commit is contained in:
parent
0d76cef434
commit
31a326fe63
@ -108,7 +108,8 @@
|
||||
"enableClipboardMonitor",
|
||||
"showPitchAccentDownstepNotation",
|
||||
"showPitchAccentPositionNotation",
|
||||
"showPitchAccentGraph"
|
||||
"showPitchAccentGraph",
|
||||
"showIframePopupsInRootFrame"
|
||||
],
|
||||
"properties": {
|
||||
"enable": {
|
||||
@ -242,6 +243,10 @@
|
||||
"showPitchAccentGraph": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"showIframePopupsInRootFrame": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -127,7 +127,8 @@ function profileOptionsCreateDefaults() {
|
||||
enableClipboardMonitor: false,
|
||||
showPitchAccentDownstepNotation: true,
|
||||
showPitchAccentPositionNotation: true,
|
||||
showPitchAccentGraph: false
|
||||
showPitchAccentGraph: false,
|
||||
showIframePopupsInRootFrame: false
|
||||
},
|
||||
|
||||
audio: {
|
||||
|
@ -87,6 +87,7 @@ async function formRead(options) {
|
||||
options.general.showPitchAccentDownstepNotation = $('#show-pitch-accent-downstep-notation').prop('checked');
|
||||
options.general.showPitchAccentPositionNotation = $('#show-pitch-accent-position-notation').prop('checked');
|
||||
options.general.showPitchAccentGraph = $('#show-pitch-accent-graph').prop('checked');
|
||||
options.general.showIframePopupsInRootFrame = $('#show-iframe-popups-in-root-frame').prop('checked');
|
||||
options.general.popupTheme = $('#popup-theme').val();
|
||||
options.general.popupOuterTheme = $('#popup-outer-theme').val();
|
||||
options.general.customPopupCss = $('#custom-popup-css').val();
|
||||
@ -167,6 +168,7 @@ async function formWrite(options) {
|
||||
$('#show-pitch-accent-downstep-notation').prop('checked', options.general.showPitchAccentDownstepNotation);
|
||||
$('#show-pitch-accent-position-notation').prop('checked', options.general.showPitchAccentPositionNotation);
|
||||
$('#show-pitch-accent-graph').prop('checked', options.general.showPitchAccentGraph);
|
||||
$('#show-iframe-popups-in-root-frame').prop('checked', options.general.showIframePopupsInRootFrame);
|
||||
$('#popup-theme').val(options.general.popupTheme);
|
||||
$('#popup-outer-theme').val(options.general.popupOuterTheme);
|
||||
$('#custom-popup-css').val(options.general.customPopupCss);
|
||||
|
@ -174,6 +174,10 @@
|
||||
<label><input type="checkbox" id="show-pitch-accent-graph"> Show graph for pitch accents</label>
|
||||
</div>
|
||||
|
||||
<div class="checkbox options-advanced">
|
||||
<label><input type="checkbox" id="show-iframe-popups-in-root-frame"> Show iframe popups in root frame</label>
|
||||
</div>
|
||||
|
||||
<div class="checkbox options-advanced">
|
||||
<label><input type="checkbox" id="show-debug-info"> Show debug information</label>
|
||||
</div>
|
||||
|
@ -22,6 +22,7 @@
|
||||
* PopupProxy
|
||||
* PopupProxyHost
|
||||
* apiForward
|
||||
* apiOptionsGet
|
||||
*/
|
||||
|
||||
async function main() {
|
||||
@ -30,8 +31,11 @@ async function main() {
|
||||
const data = window.frontendInitializationData || {};
|
||||
const {id, depth=0, parentFrameId, url, proxy=false} = data;
|
||||
|
||||
const optionsContext = {depth, url};
|
||||
const options = await apiOptionsGet(optionsContext);
|
||||
|
||||
let popup;
|
||||
if (!proxy && (window !== window.parent)) {
|
||||
if (!proxy && (window !== window.parent) && options.general.showIframePopupsInRootFrame) {
|
||||
const rootPopupInformationPromise = yomichan.getTemporaryListenerResult(
|
||||
chrome.runtime.onMessage,
|
||||
({action, params}, {resolve}) => {
|
||||
|
Loading…
Reference in New Issue
Block a user