| test_persistent_contentscripts.py |
const config = arguments[0];
const bgWin = window.wrappedJSObject.browser.extension.getBackgroundPage();
const { matches, excludeMatches } = bgWin.interventions.getBlocksAndMatchesFor(config);
const { id } =
bgWin.interventions.buildContentScriptsRegistrationsForIntervention(
config,
matches,
excludeMatches,
/* force = */ true,
)[0];
return id;
|
13533 |
- |