From 9ace600fce903b04253a2c8ecb24f0b145801e71 Mon Sep 17 00:00:00 2001 From: Gabe Date: Sat, 11 Oct 2025 01:26:09 +0800 Subject: [PATCH] feat: support local html --- public/manifest.firefox.json | 2 +- public/manifest.json | 2 +- public/manifest.thunderbird.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/manifest.firefox.json b/public/manifest.firefox.json index ad8d567..d676206 100644 --- a/public/manifest.firefox.json +++ b/public/manifest.firefox.json @@ -12,7 +12,7 @@ "content_scripts": [ { "js": ["content.js"], - "matches": [""], + "matches": ["", "file://*/*"], "all_frames": true } ], diff --git a/public/manifest.json b/public/manifest.json index 8756847..9a22aba 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -13,7 +13,7 @@ "content_scripts": [ { "js": ["content.js"], - "matches": [""], + "matches": ["", "file://*/*"], "all_frames": true } ], diff --git a/public/manifest.thunderbird.json b/public/manifest.thunderbird.json index 9237257..2944fad 100644 --- a/public/manifest.thunderbird.json +++ b/public/manifest.thunderbird.json @@ -18,7 +18,7 @@ "content_scripts": [ { "js": ["content.js"], - "matches": [""], + "matches": ["", "file://*/*"], "all_frames": true } ],