chromium/extensions/common/mojom/injection_type.mojom

// 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.

module extensions.mojom;

// The type of injected script.
enum InjectionType {
  // A content script specified in the extension's manifest.
  kContentScript,
  // A script injected via, e.g. tabs.executeScript().
  kProgrammaticScript,
};