[WordPress] 外掛分享: DevAura Accessibility Scanner

首頁外掛目錄 › DevAura Accessibility Scanner
WordPress 外掛 DevAura Accessibility Scanner 的封面圖片
全新外掛
安裝啟用
尚無評分
23 天前
最後更新
問題解決
WordPress 6.0+ PHP 8.2+ v1.0.0 上架:2026-07-07

外掛標籤

開發者團隊

⬇ 下載最新版 (v1.0.0) 或搜尋安裝

① 下載 ZIP → 後台「外掛 › 安裝外掛 › 上傳外掛」
② 後台搜尋「DevAura Accessibility Scanner」→ 直接安裝(推薦)
📦 歷史版本下載

原文外掛簡介

Note: This plugin is NOT an accessibility overlay. It acts as an audit and assistance tool to help website administrators fix structural code errors rather than applying cosmetic patches.
Key Features

Score Dashboard: Visual accessibility health grade (0-100) based on severity weighting.
In-Depth Auditing: Checks language tags, image alt attributes (missing, decorative/informative check, duplicate alts, filename alts), heading structures, form field connections, button labels, table header markup, media warning tags, ARIA spelling validation, and HTML5 layout landmarks.
AJAX Scanning Engine: Safely queries up to 10 pages in small batches to completely avoid PHP timeout limits.
Spreadsheet & PDF Exports: Download records in CSV or render print-ready layout templates.
Robust Security: Includes REST endpoint capability checks (manage_options), WordPress nonce authorization, and strict PHP input sanitization.

Developer Hooks
The plugin provides hooks to enable extension in premium custom versions:
1. devaura_accessibility_scanner_registered_rules (Filter)
Register custom WCAG rules. Custom rules must implement AccessibilityScanner\Analyzer\RuleInterface.
add_filter( 'devaura_accessibility_scanner_registered_rules', function( $rules ) {
$rules[] = new MyCustomContrastRule();
return $rules;
} );

2. devaura_accessibility_scanner_get_page_html (Filter)
Intercept page content retrieval before rules analyze it. Useful for mocking HTML or offline staging tests.
add_filter( 'devaura_accessibility_scanner_get_page_html', function( $html, $url ) {
if ( $url === 'http://test.local/' ) {
return '

Title

';
}
return $html;
}, 10, 2 );

Uninstalling
By default, activating the plugin creates two custom tables: wp_devaura_as_scans and wp_devaura_as_issues. If you select Scrub all database reports & logs on plugin deletion in the settings tab, deleting the plugin will completely remove these tables and their records.

延伸相關外掛

文章
Filter
Apply Filters
Mastodon