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

11 lines
282 B
JavaScript
Raw Normal View History

2022-03-20 04:39:47 +00:00
'use strict';
// Load Extension
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);