Преглед изворни кода

disable remove frames by default

Gildas пре 7 година
родитељ
комит
8d809aadaa
1 измењених фајлова са 1 додато и 4 уклоњено
  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;
 		}