AboutSupportDeveloper GuideVersion 44.141.100.1

Type Alias DomainSettingsPreloadScripts

DomainSettingsPreloadScripts: Record<string, {
    enabled: boolean;
}>

Enables or disables specific preload scripts by URL.

Uses the script's full URL as the key and an object with an enabled boolean property as the value.

{
"match": ["<all_urls>"],
"options": {
"preloadScripts": {
"http://localhost:53000/block-preload.js": { "enabled": false }
"http://localhost:53000/allow-preload.js": { "enabled": true }
}
}
}