chromium/chrome/test/data/extensions/api_test/webstore_private/safebrowsing_allowlisted.html

<!--
Copyright 2021 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<script src="common.js"></script>
<script>

runTests([
  function installAllowlistedExtension() {
    // See things through all the way to a successful install.
    listenOnce(chrome.management.onInstalled, function(info) {
      assertEq(info.id, extensionId);
    });

    var manifest = getManifest();
    install(
      {
        id: extensionId, iconUrl: 'extension/icon.png',
        manifest: manifest, esbAllowlist: true
      }
    );
  },
]);

</script>