musescore-downloader/src/web-ext.js
Xmader 54145a753a feat: convert as web extension
works well in both firefox and chrome
2020-10-29 03:23:02 -04:00

11 lines
296 B
JavaScript

// entry file for the Web Extension
/* eslint-disable no-undef */
const MAIN_FILE = 'dist/main.js'
const script = document.createElement('script')
script.src = chrome.runtime.getURL(MAIN_FILE)
script.addEventListener('load', () => script.remove())
document.documentElement.appendChild(script)