injection_type.mojom 405 B

12345678910111213
  1. // Copyright 2021 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. module extensions.mojom;
  5. // The type of injected script.
  6. enum InjectionType {
  7. // A content script specified in the extension's manifest.
  8. kContentScript,
  9. // A script injected via, e.g. tabs.executeScript().
  10. kProgrammaticScript,
  11. };