How to delete saved passwords in Chrome for my website using a Chrome extension?

I’m developing a Chrome extension and I want to delete any saved passwords in Chrome’s password manager that are associated with my website. My goal is to ensure that no credentials for my website are stored in the browser.

I understand that Chrome extensions have access to the chrome.storage API for managing their own data, but I couldn’t find any way to access or delete saved passwords in Chrome’s password manager.

Here’s what I’ve tried so far:

chrome.storage.sync.get(null, function(items) {
  for (var key in items) {
    if (items.hasOwnProperty(key)) {
      var url = extractUrlFromKey(key);
      if (url === 'www.example.com') {
        chrome.storage.sync.remove(key, function() {
          console.log('Şifre silindi.');
        });
      }
    }
  }
});