Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
An overlay above the web application for the screen reader accessibility testing
An overlay above the web application for the screen reader accessibility testing.
One single most important thing to understand the problems the screen reader users of your application have is to test the application from the screen reader user perspective.
This module provides an overlay, which makes no functional differences to how the application behaves except that it covers the whole window with an overlay to bring you the idea about how a blind person would feel the application.
There are two ways to engage the module: as a drop-in script or as an NPM module.
Once the module is initialized, simply press Ctrl+Shift+V
to enable the blind mode.
Simply run the following code in the browser:
var blindMode = document.createElement('script');
blindMode.src = 'https://cdn.jsdelivr.net/gh/mshoho/blind-mode@master/drop-in/blind-mode.js';
document.body.appendChild(blindMode);
WARNING: This will not work if you have strict CSP rules (and you probably should have them strict). In that case you need to put blind-mode.js somewhere to your application's assets and load it from there.
npm install --save-dev blind-mode
In the appropriate place of the application:
require('blind-mode').initBlindMode();
This is a developer's tool. This script contains about 600KB of base64 encoded animation and absolutely must not be used in a production environment.
This project is licensed under the MIT License, see the LICENSE file for details.
FAQs
An overlay above the web application for the screen reader accessibility testing
The npm package blind-mode receives a total of 0 weekly downloads. As such, blind-mode popularity was classified as not popular.
We found that blind-mode demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.