Screen Reader option

Screen Reader option

Get help reading text on a screen

If you need help reading text on a screen, you can turn on accessibility settings for a few Google products in your Google Account.

Turn screen reader on or off

The screen reader setting applies only to Google Docs, Sheets, Slides, Forms, and Drawings on a browser, like Chrome. When you use these products, a screen reader can read text on your screen aloud.

For this setting to work, you need to have a screen reader, like NVDA, JAWS, VoiceOver, or ChromeVox.

  1. On your Android phone or tablet, open your device's Settings app and then Google and then Manage your Google Account.
  2. At the top, tap Personal info.
  3. Under "General preferences for the web," tap Accessibility.
  4. Turn Screen reader on or off.

You might need to follow extra steps to set up your screen reader for Google Docs, Sheets, Slides, Forms, and Drawings.

Turn high-contrast colors on or off

The high-contrast colors setting applies only to Google Voice, the Google Developers site, and other developer documentation sites on a browser, like Chrome. On these sites, high-contrast colors can help screen text stand out more clearly.

  1. On your Android phone or tablet, open your device's Settings app and then Google and then Manage your Google Account.
  2. At the top, tap Personal info.
  3. Under "General preferences for the web," tap Accessibility.
  4. Turn High-contrast colors on or off.

Related articles

    document.addEventListener("DOMContentLoaded", function () { /* -------- Date Helpers -------- */ function addDays(date, days) { const d = new Date(date); d.setDate(d.getDate() + days); return d; } function isWorkingDay(date) { const day = date.getDay(); // 0=Sun, 6=Sat return day !== 0 && day !== 6; // Mon-Fri only } function addWorkingDays(startDate, days) { let current = new Date(startDate); let remaining = days; while (remaining > 0) { current = addDays(current, 1); if (isWorkingDay(current)) { remaining--; } } return current; } function formatDate(date) { return date.toISOString().split('T')[0]; // YYYY-MM-DD } /* -------- DOM Wiring -------- */ const calcButton = document.getElementById("calcBtn"); const daysInput = document.getElementById("daysInput"); const typeContainer = document.getElementById("typeContainer"); const dayTypeSelect = document.getElementById("dayType"); const resultDiv = document.getElementById("result"); if (!calcButton || !daysInput || !typeContainer || !dayTypeSelect || !resultDiv) { console.error("Required DOM elements missing"); return; } let enteredDays = 0; calcButton.addEventListener("click", function () { enteredDays = parseInt(daysInput.value, 10); if (!Number.isInteger(enteredDays) || enteredDays < 0) { resultDiv.textContent = "Please enter a valid non-negative integer."; resultDiv.style.color = "red"; return; } typeContainer.style.display = "block"; dayTypeSelect.value = ""; resultDiv.textContent = ""; }); dayTypeSelect.addEventListener("change", function () { if (enteredDays === 0) return; const today = new Date(); let resultDate; if (dayTypeSelect.value === "working") { resultDate = addWorkingDays(today, enteredDays); } else { resultDate = addDays(today, enteredDays); } const formatted = formatDate(resultDate); resultDiv.textContent = `Result date: ${formatted}`; resultDiv.style.color = "green"; // Reset enteredDays = 0; typeContainer.style.display = "none"; dayTypeSelect.value = ""; daysInput.value = ""; }); });