From 5dc8761f885f577d4cd023f29f07bc030cad9957 Mon Sep 17 00:00:00 2001 From: Ivan Grachev Date: Sun, 10 Jul 2022 17:16:18 +0300 Subject: [PATCH] Temporary disable all frames injection --- Safari iOS/Resources/manifest.json | 2 +- Safari macOS/Resources/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Safari iOS/Resources/manifest.json b/Safari iOS/Resources/manifest.json index 4bd3774b..7165a3c4 100644 --- a/Safari iOS/Resources/manifest.json +++ b/Safari iOS/Resources/manifest.json @@ -22,7 +22,7 @@ "content_scripts": [{ "matches": [ "file://*/*", "http://*/*", "https://*/*" ], "run_at": "document_start", - "all_frames": true, + "all_frames": false, "js": [ "content.js", "ios-specific-content.js" ] }], diff --git a/Safari macOS/Resources/manifest.json b/Safari macOS/Resources/manifest.json index 14953b0a..e7533048 100644 --- a/Safari macOS/Resources/manifest.json +++ b/Safari macOS/Resources/manifest.json @@ -22,7 +22,7 @@ "content_scripts": [{ "matches": [ "file://*/*", "http://*/*", "https://*/*" ], "run_at": "document_start", - "all_frames": true, + "all_frames": false, "js": [ "content.js", "macos-specific-content.js" ] }],