diff --git a/src/popup/ExtensionActionButtonApp.vue b/src/popup/App.vue
similarity index 91%
rename from src/popup/ExtensionActionButtonApp.vue
rename to src/popup/App.vue
index 6922723..cb591e7 100644
--- a/src/popup/ExtensionActionButtonApp.vue
+++ b/src/popup/App.vue
@@ -195,8 +195,8 @@
:settings="settings"
:site="selectedSite"
/>
-
+
@@ -206,22 +206,38 @@
diff --git a/src/popup/Popup.ts b/src/popup/Popup.ts
deleted file mode 100644
index 76694ba..0000000
--- a/src/popup/Popup.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { createApp } from 'vue'
-import App from './ExtensionActionButtonApp.vue';
-
-class Popup {
- static createApp() {
- createApp(App).mount('#app');
- }
-}
-
-export default Popup;
\ No newline at end of file
diff --git a/src/popup/js/ExecAction.ts b/src/popup/js/PopupExec.ts
similarity index 95%
rename from src/popup/js/ExecAction.ts
rename to src/popup/js/PopupExec.ts
index 3b5f31f..020f249 100644
--- a/src/popup/js/ExecAction.ts
+++ b/src/popup/js/PopupExec.ts
@@ -1,7 +1,7 @@
-import { browser } from '../../../node_modules/webextension-polyfill-ts/lib/index';
+import { browser } from 'webextension-polyfill-ts';
import Settings from '../../ext/lib/Settings';
-class ExecAction {
+class PopupExec {
settings: Settings;
site: any;
@@ -82,4 +82,4 @@ class ExecAction {
}
}
-export default ExecAction;
+export default PopupExec;
diff --git a/src/popup/panels/VideoPanel.vue b/src/popup/panels/VideoPanel.vue
index 175b3cf..ea36e3b 100644
--- a/src/popup/panels/VideoPanel.vue
+++ b/src/popup/panels/VideoPanel.vue
@@ -121,7 +121,7 @@