()
| 644 | } |
| 645 | } |
| 646 | function toggleBlurEffect() { |
| 647 | config.blurEnabled = !config.blurEnabled |
| 648 | GM_setValue('blurEnabled', config.blurEnabled) |
| 649 | updateMenuCommands() |
| 650 | } |
| 651 | function setBlurIntensity() { |
| 652 | const intensity = prompt(translate('setBlurIntensityprompt'), config.blurIntensity) |
| 653 | if (intensity !== null) { |
nothing calls this directly
no test coverage detected