-
Notifications
You must be signed in to change notification settings - Fork 70
BLINK_FEATURES_JS_CHECK
Anthony Trummer edited this page Jan 6, 2022
·
6 revisions
The blinkFeatures / enableBlinkFeatures flag can be used to selectively enable Blink (Chromium web browser engine) features, which increases the overall attack surface for production applications.
Experimental features may introduce bugs and increase the attack surface of the application.
Search for blinkFeatures / enableBlinkFeatures flags set to true within the webPreferences of BrowserWindow:
mainWindow = new BrowserWindow({
"webPreferences": {
"enableBlinkFeatures": "CSSVariables"
}
});