diff --git a/README.md b/README.md index 108e286..083c9f5 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The following adaptations are supported: * Contrast * Right-Click to Select * Selection Highlight -* Text-to-Speech +* Text-to-Speech (only for selected text) * Reading Mode * Table of Contents * Enhance Inputs diff --git a/extension/manifest.json b/extension/manifest.json index f2fe867..a244e68 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "UI Options Plus (UIO+)", "short_name": "UIO+", - "version": "0.1.0.5", + "version": "0.1.0.6", "description": "User Interface Options Plus (UIO+) allows you to customize websites to match your own personal needs and preferences.", "author": "Fluid Project", "permissions": [ diff --git a/extension/src/content_scripts/domEnactor.js b/extension/src/content_scripts/domEnactor.js index 8dd9841..8a5cb2b 100644 --- a/extension/src/content_scripts/domEnactor.js +++ b/extension/src/content_scripts/domEnactor.js @@ -127,6 +127,21 @@ options: { model: { enabled: "{domEnactor}.model.selfVoicingEnabled" + }, + // GPII-3373: temporarily remove the page level TTS until GPII-3286 is fixed + components: { + orator: { + options: { + components: { + controller: { + type: "fluid.emptySubcomponent" + }, + domReader: { + type: "fluid.emptySubcomponent" + } + } + } + } } } }