From 21081cb3ecf63b22dd2145958f15bb297dca8599 Mon Sep 17 00:00:00 2001 From: Taylor Kimmett <4603206+tskimmett@users.noreply.github.com> Date: Thu, 24 Feb 2022 10:02:13 -0500 Subject: [PATCH] force enable dev tools within iframes If your vue code is inside an iframe, this extension does not work because it doesn't inject its script into the iframe. The `all_frames` setting controls whether or not the extension runs in iframes. See documentation: https://developer.chrome.com/docs/extensions/mv3/content_scripts/#frames --- manifest.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifest.json b/manifest.json index 3d5b404..16fe82c 100644 --- a/manifest.json +++ b/manifest.json @@ -25,11 +25,13 @@ "content_scripts": [ { "matches": [""], + "all_frames": true, "js": ["inject.js"], "run_at": "document_start" }, { "matches": [""], + "all_frames": true, "js": ["detector.js"], "run_at": "document_idle" }