force-high-resolution-disne.../src/content.js

7 lines
212 B
JavaScript
Raw Normal View History

2022-03-19 03:58:19 +00:00
const script = document.createElement('SCRIPT');
script.src = chrome.runtime.getURL('page.js');
script.onload = function() {
this.remove();
};
(document.head || document.documentElement).appendChild(script);