mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +09:00
8 lines
137 B
JavaScript
8 lines
137 B
JavaScript
"use strict";
|
|
|
|
onmessage = function(event) {
|
|
fetch("https://example.com/example.txt").then(() => {
|
|
postMessage("Done!");
|
|
});
|
|
};
|
|
|