force-high-resolution-disne.../src/content.js
2022-03-18 23:58:19 -04:00

7 lines
212 B
JavaScript

const script = document.createElement('SCRIPT');
script.src = chrome.runtime.getURL('page.js');
script.onload = function() {
this.remove();
};
(document.head || document.documentElement).appendChild(script);