| 123456789101112131415161718192021222324252627282930 |
- (function attachBackgroundStep5(root, factory) {
- root.MultiPageBackgroundStep5 = factory();
- })(typeof self !== 'undefined' ? self : globalThis, function createBackgroundStep5Module() {
- function createStep5Executor(deps = {}) {
- const {
- addLog,
- generateRandomBirthday,
- generateRandomName,
- sendToContentScript,
- } = deps;
- async function executeStep5() {
- const { firstName, lastName } = generateRandomName();
- const { year, month, day } = generateRandomBirthday();
- await addLog(`步骤 5:已生成姓名 ${firstName} ${lastName},生日 ${year}-${month}-${day}`);
- await sendToContentScript('signup-page', {
- type: 'EXECUTE_STEP',
- step: 5,
- source: 'background',
- payload: { firstName, lastName, year, month, day },
- });
- }
- return { executeStep5 };
- }
- return { createStep5Executor };
- });
|