diff --git a/background/usercss-helper.js b/background/usercss-helper.js index c6835805..f6eb02a6 100644 --- a/background/usercss-helper.js +++ b/background/usercss-helper.js @@ -3,7 +3,7 @@ (() => { - API_METHODS.saveUsercss = save; + API_METHODS.saveUsercss = style => save(style, false); API_METHODS.saveUsercssUnsafe = style => save(style, true); API_METHODS.buildUsercss = build; API_METHODS.installUsercss = install;