Frequently asked questions.
The browser extension, and everything else that didn't fit neatly on one tool's page.
Looking for questions about a specific tool instead? Each of these has its own FAQ section: the main converter, style guides, programming cases, the Headline Analyzer, bulk & files, and each text utility.
Browser extension
What is a text case converter browser extension?
A browser extension that converts text case directly inside whatever page you're on, without switching tabs. Transform Case's extension supports Title Case, Sentence case, UPPERCASE, camelCase, and more, adding it as a right-click menu option and a toolbar popup built on the same engine as this site.
How do I change text case inside any browser text box?
Select the text in the field, right-click, choose "Transform Case" from the context menu, then pick a conversion. If the field is editable — a text input, textarea, or contenteditable area — the selection is replaced in place. If the selected text is on a read-only part of the page, the converted result is copied to your clipboard instead, since it can't be written back into non-editable content.
What is a Manifest V3 Chrome extension?
Manifest V3 is the current extension platform standard for Chrome, replacing the older Manifest V2. It uses a lightweight service worker instead of a persistent background page and has stricter rules around remote code execution and permissions. The Transform Case extension is built on Manifest V3.
Are Edge and Brave compatible with Chrome Web Store extensions?
Yes — both are Chromium-based browsers that install extensions from the Chrome Web Store directly, using the same extension package as Chrome.
Can I convert case inside a contenteditable web field?
Yes. The extension detects contenteditable regions, including cases where browser focus lands on a child element nested inside the editable container — common in rich-text editors like Gmail's compose window — and replaces the selected text there directly.
What keyboard shortcuts does the extension support?
Alt+U converts the selection to UPPERCASE, Alt+L to lowercase, Alt+T to Title Case (using your last-selected style guide), and Alt+S to Sentence case. All four act on whatever text is currently selected in the active tab.
Can custom dictionary terms sync across different websites?
Yes — the extension stores your style preference and custom proper-noun overrides in chrome.storage.local, shared across every site the extension runs on. That's different from the website's version, which uses the browser's localStorage and is scoped to transformcase.com only.
What permissions does the extension require, and why?
Four permissions, each tied to a specific feature:
contextMenus— builds the right-click "Transform Case" menustorage— saves your style preference and custom terms locallyactiveTab— identifies the current tab when a keyboard shortcut is usedclipboardWrite— copies the result when the selected text is on a read-only part of a page
No broader permissions are requested than these four — minimizing what an extension asks for matters both for review speed and for user trust.
How is the extension's text replacement tested?
With real headless-browser tests, not just code review. Automated runs simulate chrome.storage and chrome.runtime, then verify each replacement path actually works — form fields, contenteditable regions, and the clipboard fallback for read-only content. This process caught a real bug during development, where focus landing on a child node inside an editable container was initially missed.
General
What is a zero-account online text formatting solution?
A tool that works immediately with no signup, login, or account creation required. Transform Case is fully zero-account — every feature, including custom proper-noun overrides, works without ever asking for an email address or password.
How can I keep my text completely off cloud servers?
Use a client-side tool where the conversion logic runs as JavaScript in your own browser rather than being sent to a server for processing. This site's engine is under 20KB of JavaScript and runs entirely locally — text is never uploaded, logged, or transmitted anywhere.
Why are client-side text tools faster than backend server tools?
There's no network round-trip. A server-based tool has to upload your text, wait for processing, and download the result; a client-side tool processes it instantly on your own device the moment you type or paste, with no latency from a network request.
How do I clean invisible junk characters out of scraped or pasted text?
Use the invisible character finder. It highlights zero-width spaces, BOMs, non-breaking spaces, smart quotes, and control characters that break word counts, regex matching, and string comparison, then produces a cleaned version with each one removed or normalized.
How do I cross-reference title capitalization against official standards?
Each style guide page on this site links to its official primary source in a "Sources" section. That covers the AP Stylebook, Chicago Manual of Style, APA Style, MLA Style Center, Wikipedia's Manual of Style, The Bluebook, and the AMA Manual of Style — so you can verify any rule directly rather than taking a converter's word for it.
Is there an interactive tool to experiment with text conversions?
Yes — the converter on the homepage updates live as you type, with explain mode and diff view available to show exactly how and why each word changed under the selected style or case.
Didn't find your question? Get in touch — we read every message.