10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
// webpack > dist/mailgo.firefox.js
|
|
// script to add in Firefox addon
|
|
|
|
import mailgo from "../src/mailgo";
|
|
|
|
// check if mailgo HTML is already present in the page
|
|
let mailgoExists = !!document.getElementById("mailgo");
|
|
|
|
if (!mailgoExists) mailgo();
|