Sfoglia il codice sorgente

disable remove frames by default

Gildas 7 anni fa
parent
commit
8d809aadaa
1 ha cambiato i file con 1 aggiunte e 4 eliminazioni
  1. 1 4
      extension/core/bg/config.js

+ 1 - 4
extension/core/bg/config.js

@@ -25,7 +25,7 @@ singlefile.config = (() => {
 	const DEFAULT_CONFIG = {
 		removeHiddenElements: false,
 		removeUnusedStyles: true,
-		removeFrames: true,
+		removeFrames: false,
 		removeImports: true,
 		removeScripts: true,
 		rawDocument: false,
@@ -115,9 +115,6 @@ singlefile.config = (() => {
 			delete config.removeUnusedCSSRules;
 			config.removeUnusedStyles = true;
 		}
-		if (config.removeFrames === undefined) {
-			config.removeFrames = true;
-		}
 		if (config.removeAudioSrc === undefined) {
 			config.removeAudioSrc = true;
 		}