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

8 lines
249 B
JavaScript
Raw Normal View History

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