From ea85f2f5d62ce2d770a1efafe34e261f11aac850 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Sun, 26 Jan 2025 22:10:06 +0100 Subject: [PATCH] Disable extension on unknown sites by default --- src/ext/conf/ExtensionConf.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ext/conf/ExtensionConf.ts b/src/ext/conf/ExtensionConf.ts index afa34fb..2d70808 100644 --- a/src/ext/conf/ExtensionConf.ts +++ b/src/ext/conf/ExtensionConf.ts @@ -1419,8 +1419,8 @@ const ExtensionConf: SettingsInterface = { // #g — only available in @global // #s — only available for specific site enable: { // How should extension work: - fullscreen: ExtensionMode.Enabled, // 'enabled' - work everywhere except blacklist - theater: ExtensionMode.Enabled, // 'whitelist' - only work on whitelisted sites (#g) + fullscreen: ExtensionMode.Disabled, // 'enabled' - work everywhere except blacklist + theater: ExtensionMode.Disabled, // 'whitelist' - only work on whitelisted sites (#g) normal: ExtensionMode.Disabled, // 'disabled' - work nowhere }, // 'default' - follow global rules (#s) enableAard: { // Should we try to automatically detect aspect ratio?