Name Description Size Coverage
base-target-actor.js Type of target, a string of Targets.TYPES. @return {string} 11096 -
content-process.js Target actor for all resources in a content process of Firefox (chrome sandboxes, frame scripts, documents, etc.) See devtools/docs/contributor/backend/actor-hierarchy.md for more details about all the targets. 8077 -
content-script.js Target actor for all Web Extension Content Scripts running against matching web pages defined in the extension manifest. They are running the same thread as the page (i.e. the main thread). See devtools/docs/contributor/backend/actor-hierarchy.md for more details about all the targets. 4939 -
index.js 429 -
moz.build 550 -
parent-process.js Target actor for the entire parent process. This actor extends WindowGlobalTargetActor. See devtools/docs/contributor/backend/actor-hierarchy.md for more details about all the targets. 5954 -
session-data-processors -
target-actor-registry.sys.mjs Return the target actors matching the passed browser element id. In some scenarios, the registry can have multiple target actors for a given browserId (e.g. the regular DevTools content toolbox + DevTools WebExtensions targets). @param {object} sessionContext: The Session Context to help know what is debugged. See devtools/server/actors/watcher/session-context.js @param {string} connectionPrefix: DevToolsServerConnection's prefix, in order to select only actor related to the same connection. i.e. the same client. @returns {Array<TargetActor>} 3007 -
window-global.js eslint-disable no-throw-literal 69623 -
worker.js Target actor for a worker in the content process. @param {DevToolsServerConnection} conn: The connection to the client. @param {WorkerGlobalScope} workerGlobal: The worker global. @param {object} workerDebuggerData: The worker debugger information @param {string} workerDebuggerData.id: The worker debugger id @param {string} workerDebuggerData.url: The worker debugger url @param {string} workerDebuggerData.type: The worker debugger type @param {number?} workerDebuggerData.relatedDocumentInnerWindowId: (optional) If the worker is spawned from a document, the innerWindowId of it. @param {boolean} workerDebuggerData.workerConsoleApiMessagesDispatchedToMainThread: Value of the dom.worker.console.dispatch_events_to_main_thread pref @param {object} sessionContext: The Session Context to help know what is debugged. See devtools/server/actors/watcher/session-context.js 5298 -