@axe-core/watcher 4.3.0-next.924dc2b3 → 4.3.0-next.a032c267
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/EXTENSION-LICENSES-3RD-PARTY.md +3 -425
- package/dist/cypress/cypress.js +4 -1
- package/dist/cypress/cypress.js.map +1 -1
- package/dist/utils/saveScreenshotsLocally.js +5 -1
- package/dist/utils/saveScreenshotsLocally.js.map +1 -1
- package/dist/utils/screenshotFilename.d.ts +8 -0
- package/dist/utils/screenshotFilename.js +18 -0
- package/dist/utils/screenshotFilename.js.map +1 -0
- package/dist/utils/sync-fetch-worker.mjs +65 -1
- package/dist/utils/sync-fetch.d.ts +32 -0
- package/dist/utils/sync-fetch.js +29 -11
- package/dist/utils/sync-fetch.js.map +1 -1
- package/extension/background.js +1 -0
- package/extension/background.js.LICENSE.txt +1 -0
- package/extension/content.js +1 -1
- package/extension/manifest.json +5 -1
- package/package.json +76 -18
|
@@ -101,8 +101,70 @@ export const shouldUseEnvProxy = function () {
|
|
|
101
101
|
* @property {Object} options - The fetch options.
|
|
102
102
|
* @property {number} timeout - The timeout in milliseconds.
|
|
103
103
|
* @property {MessagePort} port - The message port for communication.
|
|
104
|
+
* @property {SharedArrayBuffer} signalBuffer - Used to wake the main thread.
|
|
105
|
+
* Encoding: Int32Array of length 2.
|
|
106
|
+
* [0] wake-reason: 0 = still waiting, 1 = postMessage delivered,
|
|
107
|
+
* 2 = worker died before delivering a message.
|
|
108
|
+
* [1] exit code when [0] === 2; otherwise 0.
|
|
104
109
|
*/
|
|
105
|
-
const
|
|
110
|
+
const SIGNAL_WAITING = 0
|
|
111
|
+
const SIGNAL_POSTMESSAGE = 1
|
|
112
|
+
const SIGNAL_DIED = 2
|
|
113
|
+
|
|
114
|
+
const { url, options, timeout, port, signalBuffer } = workerData
|
|
115
|
+
const signalArray = new Int32Array(signalBuffer)
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Wake the main thread, which is blocked in Atomics.wait on signalArray[0].
|
|
119
|
+
* Call after every postMessage so the caller never spins waiting for a
|
|
120
|
+
* message that's already arrived. Idempotent — once signalArray[0] has been
|
|
121
|
+
* set, re-entry is a no-op.
|
|
122
|
+
*/
|
|
123
|
+
function notifyMainThread() {
|
|
124
|
+
if (Atomics.load(signalArray, 0) !== SIGNAL_WAITING) {
|
|
125
|
+
return
|
|
126
|
+
}
|
|
127
|
+
Atomics.store(signalArray, 0, SIGNAL_POSTMESSAGE)
|
|
128
|
+
Atomics.notify(signalArray, 0)
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// Worker-death watchdogs. These run inside the worker thread (unlike
|
|
132
|
+
// worker.on('error') / worker.on('exit') on the parent, which can't fire
|
|
133
|
+
// before syncFetch's synchronous throw because libuv events don't deliver
|
|
134
|
+
// while the main thread is in Atomics.wait or running sync code).
|
|
135
|
+
//
|
|
136
|
+
// They sit between top-level destructuring and the fetch try-block, which
|
|
137
|
+
// means any error originating before this point (bad workerData, broken
|
|
138
|
+
// imports) still falls back to the main thread's plain timeout. That trade
|
|
139
|
+
// is acceptable: catastrophic-startup is rare and unrecoverable.
|
|
140
|
+
process.on('uncaughtException', error => {
|
|
141
|
+
if (Atomics.load(signalArray, 0) !== SIGNAL_WAITING) {
|
|
142
|
+
return
|
|
143
|
+
}
|
|
144
|
+
// Forward through the normal port channel so the caller gets the full
|
|
145
|
+
// error chain. If postMessage itself throws (e.g. error wasn't cloneable),
|
|
146
|
+
// we have no remaining channel to deliver the error — force an exit so
|
|
147
|
+
// the death watchdog below fires synchronously and wakes the parent.
|
|
148
|
+
// Without this, installing an uncaughtException handler suppresses Node's
|
|
149
|
+
// default exit and the parent blocks for the full mainThreadTimeout.
|
|
150
|
+
try {
|
|
151
|
+
const wrapped = new FetchWorkerError({ url: sanitizeUrl(url) })
|
|
152
|
+
wrapped.cause = error
|
|
153
|
+
port.postMessage({ error: wrapped })
|
|
154
|
+
notifyMainThread()
|
|
155
|
+
} catch {
|
|
156
|
+
process.exit(1)
|
|
157
|
+
}
|
|
158
|
+
})
|
|
159
|
+
|
|
160
|
+
process.on('exit', code => {
|
|
161
|
+
if (Atomics.load(signalArray, 0) !== SIGNAL_WAITING) {
|
|
162
|
+
return
|
|
163
|
+
}
|
|
164
|
+
Atomics.store(signalArray, 1, code)
|
|
165
|
+
Atomics.store(signalArray, 0, SIGNAL_DIED)
|
|
166
|
+
Atomics.notify(signalArray, 0)
|
|
167
|
+
})
|
|
106
168
|
|
|
107
169
|
try {
|
|
108
170
|
let dispatcher = getGlobalDispatcher()
|
|
@@ -133,6 +195,7 @@ try {
|
|
|
133
195
|
port.postMessage({
|
|
134
196
|
data: responseData
|
|
135
197
|
})
|
|
198
|
+
notifyMainThread()
|
|
136
199
|
} catch (error) {
|
|
137
200
|
const HTTP_PROXY = process.env.http_proxy || process.env.HTTP_PROXY
|
|
138
201
|
const HTTPS_PROXY = process.env.https_proxy || process.env.HTTPS_PROXY
|
|
@@ -165,6 +228,7 @@ try {
|
|
|
165
228
|
port.postMessage({
|
|
166
229
|
error: err
|
|
167
230
|
})
|
|
231
|
+
notifyMainThread()
|
|
168
232
|
} finally {
|
|
169
233
|
port.close()
|
|
170
234
|
}
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
export interface SyncFetchCustomOptions {
|
|
2
2
|
timeout?: number;
|
|
3
|
+
/**
|
|
4
|
+
* @internal Test-only override for the worker script path. Allows tests to
|
|
5
|
+
* substitute a fixture worker that intentionally dies before notifying, so
|
|
6
|
+
* the in-worker death watchdogs (process.on('uncaughtException') /
|
|
7
|
+
* process.on('exit')) and the signalBuffer-driven timeout error can be
|
|
8
|
+
* exercised end-to-end.
|
|
9
|
+
*/
|
|
10
|
+
_workerPath?: string;
|
|
3
11
|
}
|
|
4
12
|
export interface SyncFetchResponse {
|
|
5
13
|
status: number;
|
|
@@ -9,3 +17,27 @@ export interface SyncFetchResponse {
|
|
|
9
17
|
ok: boolean;
|
|
10
18
|
}
|
|
11
19
|
export declare function syncFetch(url: string, options?: RequestInit, customOptions?: SyncFetchCustomOptions): SyncFetchResponse;
|
|
20
|
+
/**
|
|
21
|
+
* Wake-reason values written to `signalArray[0]` by sync-fetch-worker.mjs.
|
|
22
|
+
*
|
|
23
|
+
* @internal Exported for tests.
|
|
24
|
+
*/
|
|
25
|
+
export declare const SIGNAL_WAITING = 0;
|
|
26
|
+
/** @internal */
|
|
27
|
+
export declare const SIGNAL_POSTMESSAGE = 1;
|
|
28
|
+
/** @internal */
|
|
29
|
+
export declare const SIGNAL_DIED = 2;
|
|
30
|
+
/**
|
|
31
|
+
* Build the diagnostic Error thrown when the worker fails to deliver a message
|
|
32
|
+
* before the main-thread timeout. When the worker's death-watchdog fired
|
|
33
|
+
* (`wakeReason === SIGNAL_DIED`) the exit code is folded into the message so
|
|
34
|
+
* the failure is debuggable instead of opaque. Otherwise the wait simply
|
|
35
|
+
* timed out and we report the plain timeout.
|
|
36
|
+
*
|
|
37
|
+
* @internal Exported for tests.
|
|
38
|
+
*/
|
|
39
|
+
export declare function buildTimeoutError(args: {
|
|
40
|
+
mainThreadTimeout: number;
|
|
41
|
+
wakeReason: number;
|
|
42
|
+
exitCode: number;
|
|
43
|
+
}): Error;
|
package/dist/utils/sync-fetch.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SIGNAL_DIED = exports.SIGNAL_POSTMESSAGE = exports.SIGNAL_WAITING = void 0;
|
|
3
4
|
exports.syncFetch = syncFetch;
|
|
5
|
+
exports.buildTimeoutError = buildTimeoutError;
|
|
4
6
|
const node_worker_threads_1 = require("node:worker_threads");
|
|
5
7
|
const node_path_1 = require("node:path");
|
|
6
8
|
function syncFetch(url, options = {}, customOptions = {
|
|
@@ -10,28 +12,34 @@ function syncFetch(url, options = {}, customOptions = {
|
|
|
10
12
|
const processingBuffer = 3000;
|
|
11
13
|
const mainThreadTimeout = timeout + processingBuffer;
|
|
12
14
|
const { port1, port2 } = new node_worker_threads_1.MessageChannel();
|
|
13
|
-
const
|
|
14
|
-
const
|
|
15
|
-
const
|
|
15
|
+
const signalBuffer = new SharedArrayBuffer(8);
|
|
16
|
+
const signalArray = new Int32Array(signalBuffer);
|
|
17
|
+
const workerPath = customOptions._workerPath ?? (0, node_path_1.join)(__dirname, 'sync-fetch-worker.mjs');
|
|
18
|
+
const worker = new node_worker_threads_1.Worker(workerPath, {
|
|
16
19
|
name: 'sync-fetch',
|
|
17
20
|
eval: false,
|
|
18
21
|
workerData: {
|
|
19
22
|
url,
|
|
20
23
|
options,
|
|
21
24
|
timeout,
|
|
22
|
-
port: port2
|
|
25
|
+
port: port2,
|
|
26
|
+
signalBuffer
|
|
23
27
|
},
|
|
24
28
|
transferList: [port2]
|
|
25
29
|
});
|
|
26
|
-
|
|
30
|
+
worker.on('error', () => {
|
|
31
|
+
});
|
|
32
|
+
performance.mark('axe-watcher:sync-fetch:start');
|
|
27
33
|
let message;
|
|
28
34
|
try {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
+
Atomics.wait(signalArray, 0, 0, mainThreadTimeout);
|
|
36
|
+
message = (0, node_worker_threads_1.receiveMessageOnPort)(port1);
|
|
37
|
+
if (message === undefined) {
|
|
38
|
+
throw buildTimeoutError({
|
|
39
|
+
mainThreadTimeout,
|
|
40
|
+
wakeReason: Atomics.load(signalArray, 0),
|
|
41
|
+
exitCode: Atomics.load(signalArray, 1)
|
|
42
|
+
});
|
|
35
43
|
}
|
|
36
44
|
const { data, error } = message.message;
|
|
37
45
|
if (error) {
|
|
@@ -63,6 +71,16 @@ function syncFetch(url, options = {}, customOptions = {
|
|
|
63
71
|
});
|
|
64
72
|
}
|
|
65
73
|
}
|
|
74
|
+
exports.SIGNAL_WAITING = 0;
|
|
75
|
+
exports.SIGNAL_POSTMESSAGE = 1;
|
|
76
|
+
exports.SIGNAL_DIED = 2;
|
|
77
|
+
function buildTimeoutError(args) {
|
|
78
|
+
const { mainThreadTimeout, wakeReason, exitCode } = args;
|
|
79
|
+
const reason = wakeReason === exports.SIGNAL_DIED
|
|
80
|
+
? `worker exited with code ${exitCode} before responding`
|
|
81
|
+
: `worker thread did not respond within ${mainThreadTimeout}ms`;
|
|
82
|
+
return new Error(`Request timed out - ${reason}`);
|
|
83
|
+
}
|
|
66
84
|
function sanitizeHeaders(headers) {
|
|
67
85
|
if (!headers) {
|
|
68
86
|
return undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sync-fetch.js","sourceRoot":"","sources":["../../src/utils/sync-fetch.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sync-fetch.js","sourceRoot":"","sources":["../../src/utils/sync-fetch.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function a1_0x5a39(_0x5b782c,_0xf1aa53){_0x5b782c=_0x5b782c-(0x2541+0x14ed*-0x1+-0xfc0);const _0x4cdfed=a1_0x1f7c();let _0x4d33c2=_0x4cdfed[_0x5b782c];return _0x4d33c2;}function a1_0x1f7c(){const _0x30efa8=['Path','\x20context','defineProp','8YtWnqD','MAIN','scripting','OdztR','2274567ruqrLC','led','ernals','QcWNC','pPvAK','call','erty','ternals.js','PfHNB','zkMaF','tion','1444057UBAtfT','rpGqV','10168431fyaYuV','ernals\x20fai','axe-watche','108GRJZcN','urned\x20unde','default','QLglf','isArray','now','catch','ckwqC','urned\x20no\x20r','6598970pvqrGn','LcaTJ','ORvyV','test','cedCq','__esModule','XsUNN','wiDtk','XpeAZ','Invalid\x20ax','object','__importDe','r:backgrou','OaSsy','gvxXf','Unknown\x20ac','UIkLN','aaGQr','eZHCd','alized','56811150sbydSR','SPiOf','ernals.js','cGbUD','fined\x20resu','VpIeN','/gather-in','onMessage','ipt','action','qLXXK','DMJfj','DxZbb','fEOpu','ApwFG','tab','ernals\x20ret','lfULT','Missing\x20ta','oDlOy','gather-int','259280jGIGfV','XUoOv','b\x20or\x20frame','TfMPG','addListene','mXVsk','fsCVj','then','wPPEq','PTZrg','Service\x20wo','emOGq','runtime','dMXmQ','AKpax','nSEEB','LfLOE','DudxN','xsbKQ','string','UPpti','esult','KbooE','length','executeScr','frameId','rker\x20initi','eVersionPa','message','fault','number','bnQOH','2aWaDam','Received\x20m','aBFVI','SLTYg','axeVersion','QiELM','wXdvS','bGWlo','exports','EiCUs','vsMeV','azPJk','RCROS','result','8278710OwknVr','pcOiZ','essage','BRFwq'];a1_0x1f7c=function(){return _0x30efa8;};return a1_0x1f7c();}(function(_0x1a6746,_0x205335){const _0x337f5b=a1_0x5a39,_0x1a9434=_0x1a6746();while(!![]){try{const _0x3025a6=-parseInt(_0x337f5b(0xd7))/(-0xf23+0x29*-0xa9+0x871*0x5)*(parseInt(_0x337f5b(0xb3))/(-0x17a3+-0x94d+0x20f2))+-parseInt(_0x337f5b(0xcc))/(0x2db+0xcef+-0xfc7)*(parseInt(_0x337f5b(0xc8))/(0x1d8*-0x5+-0x192+0xace))+parseInt(_0x337f5b(0xe5))/(-0x4*0x178+0x10c*0x24+-0x1fcb)+-parseInt(_0x337f5b(0xc1))/(0x2269+-0xf10*0x2+-0x443*0x1)+-parseInt(_0x337f5b(0xd9))/(0x24*0x47+-0x6fd*0x4+0x11ff)+parseInt(_0x337f5b(0x10e))/(0x26c9+0x5*0x2c4+-0x3495)*(-parseInt(_0x337f5b(0xdc))/(0x1122+-0x960+-0x7b9))+parseInt(_0x337f5b(0xf9))/(-0xaa2+0x2109+-0x19*0xe5);if(_0x3025a6===_0x205335)break;else _0x1a9434['push'](_0x1a9434['shift']());}catch(_0x37dead){_0x1a9434['push'](_0x1a9434['shift']());}}}(a1_0x1f7c,-0x122d02+0x2f5*0x58b+0xe48bb),((()=>{const _0x386e93=a1_0x5a39,_0x3654c1={'bnQOH':function(_0x58d130,_0x7e5844){return _0x58d130===_0x7e5844;},'oDlOy':function(_0x554774,_0x2d14bd){return _0x554774(_0x2d14bd);},'aaGQr':_0x386e93(0x10d)+_0x386e93(0x109)+_0x386e93(0xe4)+_0x386e93(0xa8),'fEOpu':function(_0x1a8c54,_0x52ee0c){return _0x1a8c54!==_0x52ee0c;},'fsCVj':_0x386e93(0x10d)+_0x386e93(0x109)+_0x386e93(0xdd)+_0x386e93(0xfd)+'lt','XpeAZ':function(_0x3a638d,_0x2c735b){return _0x3a638d instanceof _0x2c735b;},'pcOiZ':_0x386e93(0x10d)+_0x386e93(0xda)+_0x386e93(0xcd),'vsMeV':function(_0x599b82,_0x4e83f7){return _0x599b82!=_0x4e83f7;},'SPiOf':_0x386e93(0xef),'KbooE':function(_0x4f42f1,_0x41f654){return _0x4f42f1 in _0x41f654;},'RCROS':_0x386e93(0x102),'bGWlo':function(_0x83dc99,_0x471439,_0x52356d){return _0x83dc99(_0x471439,_0x52356d);},'DxZbb':_0x386e93(0xb4)+_0x386e93(0xc3),'QiELM':_0x386e93(0x10d)+_0x386e93(0xce),'SLTYg':_0x386e93(0xb1),'azPJk':_0x386e93(0x10b)+_0x386e93(0x95)+_0x386e93(0xc6),'TfMPG':function(_0x2a6f97,_0x548e66){return _0x2a6f97===_0x548e66;},'aBFVI':function(_0x3fc745,_0x22d618){return _0x3fc745==_0x22d618;},'OaSsy':_0x386e93(0xa6),'XUoOv':_0x386e93(0xee)+_0x386e93(0xae)+'th','UPpti':function(_0x3f9014,_0x3a7014){return _0x3f9014||_0x3a7014;},'cedCq':_0x386e93(0x10d)+_0x386e93(0xfb),'QLglf':_0x386e93(0xc9),'rpGqV':_0x386e93(0xf4)+_0x386e93(0xd6),'wiDtk':_0x386e93(0xea),'wPPEq':_0x386e93(0xdb)+_0x386e93(0xf1)+'nd','XsUNN':function(_0x529f83,_0x309d61){return _0x529f83(_0x309d61);},'qLXXK':_0x386e93(0x9d)+_0x386e93(0xad)+_0x386e93(0xf8),'pPvAK':function(_0x120bda,_0x104928){return _0x120bda!==_0x104928;}};var _0x1fca36={0x8a5(_0x200de5,_0x1f8f8d,_0x1eb827){'use strict';const _0x38e865=_0x386e93,_0x5b01f5={'mXVsk':function(_0x23abdb,_0x3bb93c){const _0x22ace4=a1_0x5a39;return _0x3654c1[_0x22ace4(0xb2)](_0x23abdb,_0x3bb93c);},'nSEEB':function(_0x461307,_0x2a6f4a){const _0x24894e=a1_0x5a39;return _0x3654c1[_0x24894e(0x10c)](_0x461307,_0x2a6f4a);},'cGbUD':_0x3654c1[_0x38e865(0xf6)],'ORvyV':function(_0x17ec74,_0x59f01d){const _0x543f10=_0x38e865;return _0x3654c1[_0x543f10(0x106)](_0x17ec74,_0x59f01d);},'LfLOE':_0x3654c1[_0x38e865(0x99)],'DMJfj':function(_0x2be890,_0x1bfff2){const _0x5c3b75=_0x38e865;return _0x3654c1[_0x5c3b75(0xed)](_0x2be890,_0x1bfff2);},'BRFwq':_0x3654c1[_0x38e865(0xc2)],'QcWNC':function(_0x502031,_0x5d47a6){const _0xe2a674=_0x38e865;return _0x3654c1[_0xe2a674(0xbd)](_0x502031,_0x5d47a6);},'EiCUs':_0x3654c1[_0x38e865(0xfa)],'UIkLN':function(_0x366130,_0x2abbf2){const _0x2857b7=_0x38e865;return _0x3654c1[_0x2857b7(0xa9)](_0x366130,_0x2abbf2);},'PfHNB':_0x3654c1[_0x38e865(0xbf)],'DudxN':function(_0x50b1c8,_0xa80fc7,_0x28a8d3){const _0x3708ad=_0x38e865;return _0x3654c1[_0x3708ad(0xba)](_0x50b1c8,_0xa80fc7,_0x28a8d3);},'PTZrg':_0x3654c1[_0x38e865(0x105)],'gvxXf':_0x3654c1[_0x38e865(0xb8)],'wXdvS':_0x3654c1[_0x38e865(0xb6)],'OdztR':_0x3654c1[_0x38e865(0xbe)],'dMXmQ':function(_0x3c2acd,_0x9c2c74){const _0x34d227=_0x38e865;return _0x3654c1[_0x34d227(0x96)](_0x3c2acd,_0x9c2c74);},'ApwFG':function(_0x53d08d,_0x3d86eb){const _0x69e0ca=_0x38e865;return _0x3654c1[_0x69e0ca(0xb5)](_0x53d08d,_0x3d86eb);},'zkMaF':_0x3654c1[_0x38e865(0xf2)],'lfULT':_0x3654c1[_0x38e865(0x94)],'xsbKQ':function(_0x1b462d,_0x3a4a24){const _0x84e201=_0x38e865;return _0x3654c1[_0x84e201(0xa7)](_0x1b462d,_0x3a4a24);},'eZHCd':_0x3654c1[_0x38e865(0xe9)],'ckwqC':_0x3654c1[_0x38e865(0xdf)],'LcaTJ':_0x3654c1[_0x38e865(0xd8)]};var _0x4c8eec=this&&this[_0x38e865(0xf0)+_0x38e865(0xb0)]||function(_0x4a1e3c){const _0x511e58=_0x38e865;return _0x4a1e3c&&_0x4a1e3c[_0x511e58(0xea)]?_0x4a1e3c:{'default':_0x4a1e3c};};Object[_0x38e865(0xc7)+_0x38e865(0xd2)](_0x1f8f8d,_0x3654c1[_0x38e865(0xec)],{'value':!(0x7*0x3a6+0x1*0x19ff+-0x3389)}),_0x3654c1[_0x38e865(0x10c)](_0x1eb827,-0xb70+-0x4*-0x752+-0xa2f);const _0xb1417d=(0xa87+0x801+0x2*-0x944,_0x3654c1[_0x38e865(0x10c)](_0x4c8eec,_0x3654c1[_0x38e865(0x10c)](_0x1eb827,-0x2aeb+-0x1*0x24d7+0x6570))[_0x38e865(0xde)])(_0x3654c1[_0x38e865(0x9b)]);chrome[_0x38e865(0x9f)][_0x38e865(0x100)][_0x38e865(0x97)+'r']((_0x57111c,_0x24d796,_0x49c6b5)=>{const _0x20cd54=_0x38e865,_0x8f409e={'VpIeN':function(_0x3a982c,_0x39ab62){const _0xe36ed1=a1_0x5a39;return _0x5b01f5[_0xe36ed1(0x104)](_0x3a982c,_0x39ab62);},'emOGq':_0x5b01f5[_0x20cd54(0xc4)],'AKpax':function(_0x583b10,_0x363e20){const _0x5bbc9c=_0x20cd54;return _0x5b01f5[_0x5bbc9c(0xa2)](_0x583b10,_0x363e20);}};if(!_0x57111c||_0x5b01f5[_0x20cd54(0xcf)](_0x5b01f5[_0x20cd54(0xbc)],typeof _0x57111c)||!_0x5b01f5[_0x20cd54(0xf5)](_0x5b01f5[_0x20cd54(0xd4)],_0x57111c))return!(0x15*-0x51+-0xf*0x16f+0x1c27);if(_0x5b01f5[_0x20cd54(0xa4)](_0xb1417d,_0x5b01f5[_0x20cd54(0x9c)],{'action':_0x57111c[_0x20cd54(0x102)],'tabId':_0x24d796[_0x20cd54(0x108)]?.['id']}),_0x5b01f5[_0x20cd54(0x98)](_0x5b01f5[_0x20cd54(0xf3)],_0x57111c[_0x20cd54(0x102)])){const _0x3c0b98=_0x24d796[_0x20cd54(0x108)]?.['id'],_0x3545d2=_0x24d796[_0x20cd54(0xac)];if(_0x5b01f5[_0x20cd54(0xcf)](_0x5b01f5[_0x20cd54(0xb9)],typeof _0x3c0b98)||_0x5b01f5[_0x20cd54(0xcf)](_0x5b01f5[_0x20cd54(0xb9)],typeof _0x3545d2))return _0x5b01f5[_0x20cd54(0xa2)](_0x49c6b5,{'ok':!(-0x24d+0x877+0x53*-0x13),'error':_0x5b01f5[_0x20cd54(0xcb)]}),!(0x7d6+-0x3*-0x158+-0xbdd);const _0x2981b7=_0x57111c[_0x20cd54(0xb7)+_0x20cd54(0xc5)];if(!(_0x5b01f5[_0x20cd54(0xa0)](void(-0x24*-0x54+0x1*-0x6b9+0x517*-0x1),_0x2981b7)||_0x5b01f5[_0x20cd54(0x98)]('',_0x2981b7)||_0x5b01f5[_0x20cd54(0x107)](_0x5b01f5[_0x20cd54(0xd5)],typeof _0x2981b7)&&/^axe-versions\/axe-core@[\w.-]+$/[_0x20cd54(0xe8)](_0x2981b7)))return _0x5b01f5[_0x20cd54(0xa2)](_0x49c6b5,{'ok':!(-0x198+0x211b+0x1*-0x1f82),'error':_0x5b01f5[_0x20cd54(0x10a)]}),!(-0x8d1*-0x1+0x1*0xbf5+-0x14c5);const _0x4a255e=_0x5b01f5[_0x20cd54(0xa5)](_0x2981b7,''),_0x36c1dd=_0x4a255e?_0x4a255e+(_0x20cd54(0xff)+_0x20cd54(0xd3)):_0x5b01f5[_0x20cd54(0xf7)];return chrome[_0x20cd54(0xca)][_0x20cd54(0xab)+_0x20cd54(0x101)]({'target':{'tabId':_0x3c0b98,'frameIds':[_0x3545d2]},'files':[_0x36c1dd],'world':_0x5b01f5[_0x20cd54(0xe3)]})[_0x20cd54(0x9a)](_0x20c3c5=>{const _0x525b45=_0x20cd54;if(!Array[_0x525b45(0xe0)](_0x20c3c5)||_0x5b01f5[_0x525b45(0x98)](-0x1*-0x3ab+-0x2271+0x1ec6,_0x20c3c5[_0x525b45(0xaa)]))return void _0x5b01f5[_0x525b45(0xa2)](_0x49c6b5,{'ok':!(-0xd+0x2136+-0x2*0x1094),'error':_0x5b01f5[_0x525b45(0xfc)]});const _0xbb1261=_0x20c3c5[0x4e2*-0x8+0x25b5*0x1+0x15b]?.[_0x525b45(0xc0)];_0x5b01f5[_0x525b45(0xa2)](_0x49c6b5,_0x5b01f5[_0x525b45(0xe7)](void(-0x5b*-0x16+-0x5b9*0x2+0x3a0),_0xbb1261)?{'ok':!(0x157f*-0x1+-0x18a1+0x48*0xa4),'data':_0xbb1261}:{'ok':!(0x25df*-0x1+-0xb*0x18e+-0x1b7d*-0x2),'error':_0x5b01f5[_0x525b45(0xa3)]});})[_0x20cd54(0xe2)](_0x3eb0ea=>{const _0x5a3a2d=_0x20cd54,_0x2c833c=_0x8f409e[_0x5a3a2d(0xfe)](_0x3eb0ea,Error)?_0x3eb0ea[_0x5a3a2d(0xaf)]:_0x8f409e[_0x5a3a2d(0x9e)];_0x8f409e[_0x5a3a2d(0xa1)](_0x49c6b5,{'ok':!(-0x1287+0x1*-0xbf1+0x1e79),'error':_0x2c833c});}),!(0x12d1+-0xe1d+-0x4b4);}return _0x5b01f5[_0x20cd54(0xa4)](_0xb1417d,_0x5b01f5[_0x20cd54(0xe6)],_0x57111c[_0x20cd54(0x102)]),!(0x1f51*0x1+0x269a+-0x45ea);}),_0x3654c1[_0x38e865(0xeb)](_0xb1417d,_0x3654c1[_0x38e865(0x103)]);},0x15ae(_0x5f3099,_0x53a142){'use strict';const _0xe3fb6c=_0x386e93;Object[_0xe3fb6c(0xc7)+_0xe3fb6c(0xd2)](_0x53a142,_0x3654c1[_0xe3fb6c(0xec)],{'value':!(0x1*-0x159b+-0xe75+0x2410)}),_0x53a142[_0xe3fb6c(0xde)]=_0x2be206=>(Date[_0xe3fb6c(0xe1)](),(_0x4f1f53,_0x397f1)=>{});},0x7a9(){}},_0x181253={};!function _0xe1483e(_0xd1d81){const _0x45d3ab=_0x386e93;var _0x56987c=_0x181253[_0xd1d81];if(_0x3654c1[_0x45d3ab(0xd0)](void(-0xf0d*-0x2+-0x1a*0x13a+0x1ca),_0x56987c))return _0x56987c[_0x45d3ab(0xbb)];var _0xf7e300=_0x181253[_0xd1d81]={'exports':{}};return _0x1fca36[_0xd1d81][_0x45d3ab(0xd1)](_0xf7e300[_0x45d3ab(0xbb)],_0xf7e300,_0xf7e300[_0x45d3ab(0xbb)],_0xe1483e),_0xf7e300[_0x45d3ab(0xbb)];}(-0x5c*0x17+-0x1*-0x216f+-0x9*0x1d6);})()));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! Copyright Deque 2021-2026 All Rights Reserved */
|