From 702bca43962e4ac9a858096369144f86c2e3e82b Mon Sep 17 00:00:00 2001 From: Joel Brock Date: Thu, 23 Apr 2026 09:16:01 -0700 Subject: [PATCH] fix: add outlook.cloud.microsoft URL pattern, fix toggle switch clickability --- manifest.json | 4 ++-- popup/popup.css | 8 ++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index 1973bd7..2034aeb 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "permissions": ["storage", "activeTab"], "content_scripts": [ { - "matches": ["https://outlook.office.com/*", "https://outlook.office365.com/*"], + "matches": ["https://outlook.office.com/*", "https://outlook.office365.com/*", "https://outlook.cloud.microsoft/*"], "css": ["themes/base.css"], "js": [ "content/settings-defaults.js", @@ -36,7 +36,7 @@ "web_accessible_resources": [ { "resources": ["themes/*.css"], - "matches": ["https://outlook.office.com/*", "https://outlook.office365.com/*"] + "matches": ["https://outlook.office.com/*", "https://outlook.office365.com/*", "https://outlook.cloud.microsoft/*"] } ] } diff --git a/popup/popup.css b/popup/popup.css index 73c731f..4345e0d 100644 --- a/popup/popup.css +++ b/popup/popup.css @@ -104,9 +104,13 @@ body { } .or-switch input { + position: absolute; opacity: 0; - width: 0; - height: 0; + width: 100%; + height: 100%; + cursor: pointer; + z-index: 2; + margin: 0; } .or-switch .slider {