aboutsummaryrefslogtreecommitdiff
path: root/ext/js/background/script-manager.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/js/background/script-manager.js')
-rw-r--r--ext/js/background/script-manager.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/js/background/script-manager.js b/ext/js/background/script-manager.js
index ea1702e9..6c69a796 100644
--- a/ext/js/background/script-manager.js
+++ b/ext/js/background/script-manager.js
@@ -32,7 +32,7 @@ export function injectStylesheet(type, content, tabId, frameId, allFrames) {
/** @type {chrome.scripting.InjectionTarget} */
const target = {
tabId,
- allFrames
+ allFrames,
};
/** @type {chrome.scripting.CSSInjection} */
const details = (
@@ -124,7 +124,7 @@ function createContentScriptRegistrationOptions(details, id) {
/** @type {chrome.scripting.RegisteredContentScript} */
const options = {
id: id,
- persistAcrossSessions: true
+ persistAcrossSessions: true,
};
if (Array.isArray(css)) {
options.css = [...css];