From 88fea12ee634d45b4178f08aaaa6fe83273f3683 Mon Sep 17 00:00:00 2001 From: "Abhijith Vijayan [FLUXON]" Date: Sat, 3 Jan 2026 19:45:33 +0530 Subject: [PATCH] fix: web_accessible_resources now supports http urls --- source/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/manifest.json b/source/manifest.json index a4fcf27..84a27fe 100644 --- a/source/manifest.json +++ b/source/manifest.json @@ -108,7 +108,7 @@ "__chrome__web_accessible_resources": [ { "resources": [ "assets/*" ], - "matches": [ "https://*/*" ] + "matches": [ "http://*/*", "https://*/*" ] } ] } \ No newline at end of file