Seamless Accessibility Integration

Add full WCAG compliance to your website in under 5 minutes with our easy-to-implement toolbar

No coding skills required
WCAG 2.1 AA Compliant
Mobile responsive
View Pricing

Get Started in 3 Simple Steps

Add accessibility to your website in minutes

1

Choose Your Plan

Select the plan that fits your needs. Start with our 30-Day Free Trial or choose Professional/Premium for advanced features.

Available Plans:
  • Free Trial: Basic features for 30 days
  • Professional: Advanced features + Analytics
  • Premium: White-label + Full customization
2

Get License Key

Sign up for your chosen plan and receive a unique license key instantly.

Important: License keys are required for Professional and Premium plans. Free Trial works without a key.
Key Benefits:
  • Domain-specific activation
  • Priority support access
  • Usage analytics dashboard
  • Regular feature updates
3

Add Integration Code

Copy and paste the code snippet into your website before the closing </head> tag.

Basic Integration Code
<script> (function () { window.accessibilityToolbarConfig = { licenseKey: "YOUR_LICENSE_KEY_HERE", floatIconPosition: "top-right", brandColor: "#28a745", showToolbarOnLoad: false, enableAnalytics: true }; // Load the toolbar script ONCE var script = document.createElement("script"); script.src = "https://accessly.website/assets/js/atb001_loader.min.js"; script.async = true; document.head.appendChild(script); })(); </script>

Platform-Specific Guides

Step-by-step instructions for popular platforms

WordPress

Add to theme or use plugin

Method 1: Theme Editor
  1. Go to Appearance → Theme Editor
  2. Select header.php
  3. Add code before </head>
  4. Update file
Method 2: Plugin
  1. Install "Header & Footer Scripts" plugin
  2. Add code to Header section
  3. Save changes
WordPress Integration
<?php // Add to header.php before </head> if (!defined(\'ABSPATH\')) exit; ?> <script> (function () { window.accessibilityToolbarConfig = { licenseKey: "<?php echo get_option(\'accessly_license_key\', \'\'); ?>", floatIconPosition: "top-right", brandColor: "#28a745", showToolbarOnLoad: false, enableAnalytics: true }; // Load the toolbar script ONCE var script = document.createElement("script"); script.src = "https://accessly.website/assets/js/atb001_loader.min.js"; script.async = true; document.head.appendChild(script); })(); </script>

Shopify

Add to theme liquid

Steps:
  1. Go to Online Store → Themes
  2. Click "Actions" → "Edit code"
  3. Open theme.liquid
  4. Find </head> tag
  5. Add code before it
  6. Save changes
Shopify Integration
{{ \'Accessly Toolbar Integration\' }} {% comment %} Add before closing head tag {% endcomment %} <script> (function () { window.accessibilityToolbarConfig = { licenseKey: "{{ shop.metafields.accessly.license_key }}", floatIconPosition: "bottom-right", brandColor: "#28a745", showToolbarOnLoad: false, enableAnalytics: true }; // Load the toolbar script ONCE var script = document.createElement("script"); script.src = "https://accessly.website/assets/js/atb001_loader.min.js"; script.async = true; document.head.appendChild(script); })(); </script>

React/Angular/Vue

SPA Framework Integration

React Example:
React Component
import { useEffect } from \'react\'; function AccessibilityToolbar() { useEffect(() => { (function () { // Configuration window.accessibilityToolbarConfig = { licenseKey: process.env.REACT_APP_ACCESSLY_KEY, floatIconPosition: "top-right", brandColor: "#28a745", showToolbarOnLoad: false, enableAnalytics: true }; // Load the toolbar script ONCE var script = document.createElement("script"); script.src = \'https://accessly.website/assets/js/atb001_loader.min.js\'; script.async = true; document.head.appendChild(script); })(); return () => { // Cleanup if needed if (window.accessibilityToolbarAPI) { window.accessibilityToolbarAPI.destroy(); } }; }, []); return null; // No UI, toolbar floats } export default AccessibilityToolbar;

Detailed Configuration Examples

Choose the configuration that matches your plan and requirements:

Free Trial Configuration (30 Days)
<script> (function () { // Free Trial (30 Days) window.accessibilityToolbarConfig = { // No license key needed for free trial enablePremium: false, // Free features only floatIconPosition: "bottom-right", // Icon position brandColor: "#28a745", showToolbarOnLoad: false, enableAnalytics: true, features: { zoom: true, // Text zoom darkMode: true, // Dark mode toggle highContrast: true, // High contrast mode bigCursor: false, // Big cursor (disabled) hideImages: false, // Hide images (disabled) lineHeight: true, // Adjust line height monochrome: false, // Monochrome mode (disabled) dyslexicFont: false, // Dyslexic font (disabled) reduceMotion: false, // Reduce motion (disabled) textToSpeech: false // Text-to-speech (disabled) }, onReady: function() { console.log("Accessly Toolbar (Free Trial) loaded successfully!"); } }; // Load the toolbar script ONCE var script = document.createElement("script"); script.src = "https://accessly.website/assets/js/atb001_loader.min.js"; script.async = true; document.head.appendChild(script); })(); </script>
Free Trial Includes: Basic accessibility features for 30 days, WCAG compliance, mobile responsiveness, and community support.
Professional Plan Configuration (₹25,000/year)
<script> (function () { // Professional Plan (₹25,000/year) window.accessibilityToolbarConfig = { // REQUIRED: Your professional license key licenseKey: "PROFESSIONAL_LICENSE_KEY_HERE", enablePremium: true, // Enable professional features enableProfessional: true, // Enable Professional features floatIconPosition: "top-right", // Icon position brandColor: "#007bff", showToolbarOnLoad: false, // Don\'t auto-show on load enableAnalytics: true, // Enable usage analytics // All features enabled except white-label features: { zoom: true, darkMode: true, highContrast: true, bigCursor: true, hideImages: true, lineHeight: true, monochrome: true, dyslexicFont: true, reduceMotion: true, textToSpeech: true, voiceSelection: true, resetButton: true }, // Professional features professionalFeatures: { speakHover: true, // Text-to-speech on hover keyboardShortcuts: true, // Keyboard navigation advancedAnalytics: true, // Detailed analytics apiAccess: true // API access }, // Callbacks onReady: function() { console.log("Accessly Toolbar (Professional) loaded!"); if (typeof gtag !== "undefined") { gtag("event", "accessibility_toolbar_loaded"); } }, onSettingsChange: function(settings) { // Track user preferences console.log("User changed settings:", settings); } }; // Load the toolbar script ONCE var script = document.createElement("script"); script.src = "https://accessly.website/assets/js/atb001_loader.min.js"; script.async = true; document.head.appendChild(script); })(); </script>
Professional Plan Includes: All Free Trial features + Advanced tools, Analytics dashboard, Email support, API access, and Priority updates.
Premium Plan Configuration (₹60,000/year)
<script> (function () { // Premium Plan (₹60,000/year) window.accessibilityToolbarConfig = { // REQUIRED: Your premium license key licenseKey: "PREMIUM_LICENSE_KEY_HERE", enablePremium: true, // Enable all features enableProfessional: true, // Enable Professional features companyName: "Your Brand Name", // Your company name brandColor: "#007bff", // Your brand color floatIconPosition: "bottom-left", // Custom position showToolbarOnLoad: true, // Auto-show on load enableAnalytics: true, // Analytics // All features enabled features: { zoom: true, darkMode: true, highContrast: true, bigCursor: true, hideImages: true, lineHeight: true, monochrome: true, dyslexicFont: true, reduceMotion: true, textToSpeech: true, voiceSelection: true, resetButton: true }, // All professional features professionalFeatures: { speakHover: true, keyboardShortcuts: true, customCss: true, // Add custom CSS advancedAnalytics: true, apiIntegration: true, // API access enhancedAnalytics: true // Enhanced analytics }, // Custom branding ariaLabels: { toggleButton: "Your Brand Accessibility Tools", panel: "Your Brand Accessibility Settings" }, // Customization customClasses: { toggleButton: "your-brand-toggle", panel: "your-brand-panel" }, // Advanced settings advanced: { useShadowDOM: true, // Better isolation compatibilityMode: true // Enhanced compatibility }, onReady: function() { console.log("Premium toolbar loaded with custom branding"); } }; // Load the toolbar script ONCE var script = document.createElement("script"); script.src = "https://accessly.website/assets/js/atb001_loader.min.js"; script.async = true; document.head.appendChild(script); })(); </script>
Premium Plan Includes: All Professional features + White-label branding, Custom CSS, Advanced API access, Priority 24/7 support, 3 domains included, and Brand removal option.
Advanced Configuration Options
<script> (function () { // Advanced Configuration Options window.accessibilityToolbarConfig = { licenseKey: "YOUR_LICENSE_KEY", // Position options: "top-right", "top-left", "bottom-right", "bottom-left", "middle-right", "middle-left" floatIconPosition: "middle-right", // Color options: Any hex color or named colors brandColor: "#28a745", // Green // Behavior showToolbarOnLoad: true, // Auto-show toolbar autoLoad: true, // Auto-load script lazyLoad: false, // Don\'t lazy load debug: false, // Debug mode // Feature customization features: { zoom: { enabled: true, min: 50, max: 200 }, darkMode: true, highContrast: true, textToSpeech: { enabled: true, voice: "female", rate: 1.0, pitch: 1.0 } }, // Analytics analytics: { enable: true, trackFeatureUsage: true, anonymousTracking: true }, // Integration integrations: { googleAnalytics: true, // Send events to GA googleTagManager: false }, // Callbacks onReady: function() { console.log("Toolbar ready with advanced config"); }, onError: function(error) { console.error("Toolbar error:", error); } }; // Load the toolbar script ONCE var script = document.createElement("script"); script.src = "https://accessly.website/assets/js/atb001_loader.min.js"; script.async = true; document.head.appendChild(script); })(); </script>
Note: Advanced options require technical knowledge. Refer to our full documentation for detailed explanations.

See the Toolbar in Action

Experience all features and functionalities before implementing on your website.

Visit Live Demo Page

Test the toolbar with real examples and see how it works with different content types.

Simple, Transparent Pricing

Choose the perfect plan for your needs

FREE TRIAL

Free Trial

30 days, no credit card required

₹0/30 days
  • Basic Accessibility Features
  • Text Size Adjustment
  • Dark Mode & High Contrast
  • Limited to 30 days
  • Community Support
  • 1 Domain only
  • No Advanced Features

No credit card required

PREMIUM

Premium

For large organizations

₹60,000/year
  • All Professional Features
  • White-label Customization
  • Enhanced Analytics Dashboard
  • Advanced API Access
  • Priority 24/7 Support
  • 3 Domains included
  • Custom Feature Requests
  • Brand Removal Option
Choose Premium

Secure checkout process

Compare Features

See how our plans stack up against each other

Feature Free Trial Professional Premium
Text Size Adjustment
Dark Mode & High Contrast
Custom Color Schemes
Text-to-Speech (Hover)
Advanced Analytics Dashboard
API Access
White-label Customization
Enhanced Analytics Dashboard
Advanced API Access
Brand Removal Option
Support Community Email Priority 24/7
Trial Period 30 Days - -
Domains Included 1 1 Single Domain 3 Domains
Price ₹0 ₹25,000/- Only Per Year ₹60,000 Only Per Year

All paid plans include a 14-day money-back guarantee

Complete Documentation

Detailed guides, API references, and examples for every feature and configuration option.

View Documentation

Need Help?

Our support team is ready to help with implementation, configuration, and any questions you may have.

Contact Support

Ready to Make Your Website Accessible?

Join 10,000+ websites that trust Accessly for WCAG compliance.