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