diff --git a/content/apply.js b/content/apply.js index 9038af87..ee8b63cc 100644 --- a/content/apply.js +++ b/content/apply.js @@ -138,7 +138,9 @@ } function doExposeIframes(state = exposeIframes) { - if (state === exposeIframes || window === parent) { + if (state === exposeIframes || + state === true && typeof exposeIframes === 'string' || + window === parent) { return; } exposeIframes = state;