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

11 lines
282 B
JavaScript

'use strict';
// Load Extension
const script = document.createElement('SCRIPT');
script.src = chrome.runtime.getURL('src/page.js');
script.type = 'text/javascript';
script.onload = function() {
this.remove();
};
(document.head || document.documentElement).appendChild(script);