diff options
author | sameerasw <[email protected]> | 2025-03-05 19:10:38 +0530 |
---|---|---|
committer | sameerasw <[email protected]> | 2025-03-05 19:10:41 +0530 |
commit | 46f443bdf404b5f5b81fa59899e271cb356e0598 (patch) | |
tree | ca1229f4e70a3247288e431f62212aa8c98815c2 /popup | |
parent | 6b25539949e6235d3aaacd8278f06a0002f8edf7 (diff) |
minor website detection text bug fix
Diffstat (limited to 'popup')
-rw-r--r-- | popup/popup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/popup/popup.js b/popup/popup.js index ece8633..71ad967 100644 --- a/popup/popup.js +++ b/popup/popup.js @@ -227,7 +227,7 @@ new (class ExtensionPopup { const features = styles[currentSiteKey]; - if (this.globalSettings.forceStyling) { + if (!currentSiteKey || currentSiteKey === "example.com.css") { const skipForceThemingToggle = document.createElement("div"); skipForceThemingToggle.className = "toggle-container"; skipForceThemingToggle.innerHTML = ` |