mirror of
https://github.com/bellingcat/auto-archiver-extension.git
synced 2026-06-07 19:18:33 +03:00
22 lines
636 B
JavaScript
22 lines
636 B
JavaScript
import {createApp} from 'vue';
|
|
import Popup from '../vue/Popup.vue';
|
|
import 'materialize-css/dist/css/materialize.min.css';
|
|
import 'material-design-icons/iconfont/material-icons.css';
|
|
|
|
const app = createApp(Popup);
|
|
app.mount('#app');
|
|
|
|
// Import browser from 'webextension-polyfill';
|
|
// import optionsStorage from './options-storage.js';
|
|
|
|
document.addEventListener('DOMContentLoaded', async () => {
|
|
// TODO: uncomment if using options
|
|
// listenForOptionsClick();
|
|
});
|
|
|
|
// Function listenForOptionsClick() {
|
|
// document.querySelector('#optionsBtn').addEventListener('click', () => {
|
|
// browser.runtime.openOptionsPage();
|
|
// });
|
|
// }
|