Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions ElPaisA11yFixes.user.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// ==UserScript==
// @name ElPais Accessibility Fixes
// @namespace http://nvdaes.github.io/grease
// @description Improves the accessibility of Diario El País.
// @description:es Mejora la accesibilidad del Diario El País
// @author Noelia Ruiz Martínez <[email protected]>
// @copyright 2017 Noelia Ruiz Martínez
// @license GNU General Public License version 2.0
// @version 2017.1.1
// @grant none
// @include http://*elpais.com/*
// ==/UserScript==

function labelControls() {
for (element of document.querySelectorAll(".boton-nombre")) {
label = element.textContent;
element.parentNode.setAttribute("aria-label", label);
}
}

labelControls()
1 change: 1 addition & 0 deletions KillWindowlessFlash.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// @name Kill Windowless Flash
// @namespace http://www.jantrid.net/axSGrease/
// @description Makes windowless (transparent or opaque) Adobe Flash objects windowed so they have a chance of being accessible.
// @description:es Incluye en una ventana los objetos Adobe Flash (transparentes u opacos) que no tienen ventana, de modo que eventualmente puedan ser accesibles.
// @author James Teh <[email protected]>
// @copyright 2011-2012 James Teh
// @license GNU General Public License version 2.0
Expand Down
1 change: 1 addition & 0 deletions TelegramA11yFixes.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// @name Telegram Accessibility Fixes
// @namespace http://axSGrease.nvaccess.org/
// @description Improves the accessibility of Telegram.
// @description:es Mejora la accesibilidad de Telegram.
// @author Michael Curran <[email protected]>
// @copyright 2017 NV Access Limited
// @license GNU General Public License version 2.0
Expand Down