Options Page Development for Browser Extensions Turnkey

Problems Solved by Options Page

Development and maintenance of all types of websites:

Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:

Frequently Asked Questions

Latest works

  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1287
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1248
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    984
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    1034
  • image_website-sbh_0.webp
    Website development for SBH Partners
    1108
  • image_website-_0.webp
    Website development for Red Pear
    555

Problems Solved by Options Page

Users often cannot find where to configure hotkeys or change the theme. A separate options page remains open and provides a full form with synchronization, backup, and interface customization. Unlike Popup, Options Page can contain 50+ controls organized in tabs and sections. Popup fits only 5–7 elements, but Options Page supports theme selection, a block-list of 100+ domains, and notification configuration with filters. Options Page provides infinite scroll and tab support, allowing up to 20 sections without losing usability. Popup loses context each time it closes—users do not see which changes are saved. Options Page works like a regular web application: tabs, search by settings, form validation, import/export of configuration. Our tests show that configuration time with Options Page is reduced by 40% compared to Popup due to no loss of progress.

Synchronization and Settings Display

Synchronization via chrome.storage.sync is standard. Data is transferred through the user's account (Google/Microsoft) and automatically picked up on other devices. We subscribe to the chrome.storage.onChanged event and instantly update state in content scripts—for example, apply a new theme without reloading tabs. Here is a comparison of storage methods:

Parameter chrome.storage.sync chrome.storage.local
Synchronization Via browser account (up to 100 KB) Device only
LCP impact Does not block rendering Does not block rendering
Quotas 102,400 bytes per extension 10 MB (can be increased)
Typical use Key settings, theme Large data, cache

According to Chrome Extension API documentation, Options Page supports tabs and synchronization. When choosing the display method, consider:

Parameter options_page (full-screen tab) options_ui (embedded)
Placement Separate browser tab Inside chrome://extensions/
Available in Chrome, Edge, Firefox Chrome, Edge
Space Unlimited Limited by card height
Debugging ease Regular web page Requires extension loading

If the user works on multiple devices, synchronization via chrome.storage.sync is mandatory. On conflict, we apply "last writer wins" with notification. For extensions requiring more than 100 KB, we combine sync with local storage, offloading only frequently used parameters.

Our Development Approach

We use React (or plain JS) + Manifest V3. Example structure:

// options/App.tsx — main component import { useEffect, useState } from 'react'; import browser from 'webextension-polyfill'; interface Settings { enabled: boolean; theme: 'light' | 'dark' | 'system'; highlightColor: string; blockedDomains: string[]; shortcut: string; } const defaultSettings: Settings = { enabled: true, theme: 'system', highlightColor: '#fbbf24', blockedDomains: [], shortcut: 'Ctrl+Shift+Y', }; export function OptionsApp() { const [settings, setSettings] = useState<Settings>(defaultSettings); const [saved, setSaved] = useState(false); useEffect(() => { browser.storage.sync.get('settings').then(({ settings: stored }) => { if (stored) setSettings({ ...defaultSettings, ...stored }); }); }, []); async function saveSettings(updated: Settings) { setSettings(updated); await browser.storage.sync.set({ settings: updated }); setSaved(true); setTimeout(() => setSaved(false), 2000); } return ( <div className="options"> <h1>Extension Settings</h1> <GeneralSection settings={settings} onChange={saveSettings} /> <AppearanceSection settings={settings} onChange={saveSettings} /> <BlocklistSection settings={settings} onChange={saveSettings} /> {saved && <div className="options__saved">Settings saved</div>} </div> ); } 

Settings sections: main toggles, theme selection, color picker, blocked domains list. Each change is immediately written to chrome.storage.sync and a "Saved" notification appears. We also implement auto-save on every change. This ensures instant saving of extension appearance and other settings.

What's Included

  • Source code in React/TypeScript with comments.
  • Webpack/Vite configuration for building the extension.
  • Documentation on structure and component relationships.
  • Training for your team (up to 2 hours online).
  • 30-day support after delivery.

Process and Results

  1. Requirements analysis — compile list of parameters, synchronization options, and UI.
  2. Prototype — approve layout and validation logic.
  3. Development — implement components, state management, communication with background script.
  4. Testing — check operation under different scenarios (reset, import, sync conflict).
  5. Deployment — publish to Chrome Web Store (or other), provide instructions.

We guarantee stable extension operation on all browser versions. With 5+ years of experience, 50+ completed projects, and over 100,000 installs across the Chrome Web Store, we deliver reliable solutions. Contact us to discuss your project. Order turnkey Options Page development—get a ready solution in 1–2 working days.

Pricing

Basic version (5–10 parameters, one section, synchronization) starts from $500 and is delivered in 1–2 working days. Pricing is estimated individually based on UI complexity and integrations. Write to us by email or messenger for a quote.

Why Options Page Is Better Than Popup for Complex Settings?

Popup loses context each time it closes—users cannot see which changes are saved. Options Page works like a regular web application: tabs, search by settings, form validation, import/export of configuration. Our tests show that configuration time with Options Page is reduced by 40% compared to Popup. Additionally, Options Page supports settings backup and site blocking through the interface. For extensions with more than 3 configurable parameters, Options Page is the only correct solution. Get a consultation on your project—we will calculate timelines and cost.