Pre-Blur: Protection Before Classification
Most image scanning tools follow a see-then-decide approach: the image loads, the AI analyzes it, and then the tool decides what to do. This means the image is visible on your screen — even if only briefly — before any action is taken. For someone in recovery, that brief exposure can be enough to trigger a relapse.
Peace of Mind inverts this process entirely. A 40px Gaussian blur is applied to every image via CSS injected at document_start — the earliest possible injection point in the browser lifecycle. This happens before the page renders, before any JavaScript executes, before the browser has drawn a single pixel of content. Every image starts blurred. You never see an unclassified image.
Once the InceptionV3 model finishes classification, safe images have their blur removed. The transition is smooth and nearly instantaneous on modern hardware. Suggestive images remain blurred. Explicitly harmful images trigger a full page redirect to the block page. At no point during this process is an explicit image visible on your screen.