Files
temu-plugin/src/entry/content.js
liushiwei 0808f42ce7 调整
2024-07-18 14:48:44 +08:00

12 lines
494 B
JavaScript

function injectScript(file, node) {
var th = document.getElementsByTagName(node)[0];
var s = document.createElement('script');
s.setAttribute('type', 'text/javascript');
s.setAttribute('src', file);
th.appendChild(s);
}
injectScript( chrome.runtime.getURL('/js/jszip.min.js'), 'body');
injectScript( chrome.runtime.getURL('/js/FileSaver.js'), 'body');
injectScript( chrome.runtime.getURL('/js/download.js'), 'body');
injectScript( chrome.runtime.getURL('/js/temuSeller.js'), 'body');