aboutsummaryrefslogtreecommitdiff
path: root/extension/src/entries/contentScript/primary/main.js
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-01-07 20:39:18 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-01-07 20:39:18 -0500
commitc438ee90e3be4e5e01ae3d045d6b841a03bd46eb (patch)
tree41c0b2ee815ce979e2af0e79f8fde9b58f5f4627 /extension/src/entries/contentScript/primary/main.js
parente87c4b69036e32b4fcf3df89e8158fb52df6a4e0 (diff)
losts of package updates & permissionsHEADmaster
Diffstat (limited to 'extension/src/entries/contentScript/primary/main.js')
-rw-r--r--extension/src/entries/contentScript/primary/main.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/extension/src/entries/contentScript/primary/main.js b/extension/src/entries/contentScript/primary/main.js
index bbe5edf..15fc2ec 100644
--- a/extension/src/entries/contentScript/primary/main.js
+++ b/extension/src/entries/contentScript/primary/main.js
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Vaughn Nugent
+// Copyright (C) 2024 Vaughn Nugent
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
@@ -17,7 +17,7 @@ import { runtime } from "webextension-polyfill";
import { createApp } from "vue";
import { defer } from "lodash";
import { createPinia } from 'pinia';
-import { useBackgroundPiniaPlugin, identityPlugin, originPlugin } from '../../store'
+import { useBackgroundPiniaPlugin, identityPlugin, originPlugin, permissionsPlugin } from '../../store'
import { onLoad } from "../util";
import renderContent from "../renderContent";
import App from "./App.vue";
@@ -48,6 +48,7 @@ renderContent([], (appRoot, shadowRoot) => {
.use(bgPlugins)
.use(identityPlugin)
.use(originPlugin)
+ .use(permissionsPlugin)
//Add tailwind styles just to the shadow dom element
const style = document.createElement('style')