I see that there's a Chrome Extension API called chrome.browsingData that lets you clear the browser data in a granular way. However, I could not find an API to tell Chrome to run Settings > Privacy & Security > Safety Check > Check Now. Looking at the source code for this settings.js, I see that it calls:
HatsBrowserProxyImpl.getInstance().trustSafetyInteractionOccurred(TrustSafetyInteraction.RAN_SAFETY_CHECK);this.runSafetyCheck_()
However, I do not see how to do this from within a Chrome Extension. Is it possible? And, if not possible, then can I implement an IFRAME that lets me embed this feature in it from the chrome://settings/privacy page ?