-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddons.d.ts
More file actions
581 lines (481 loc) · 12.6 KB
/
addons.d.ts
File metadata and controls
581 lines (481 loc) · 12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
/** @author [ScratchAddons/manifest-schema](https://github.com/ScratchAddons/manifest-schema/blob/e74537b/1/1.23.json) */
/** The value manipulator. */
export type cssManipulator =
| string
| number
| {
/** The type of the manipulator. */
type: "settingValue";
/** The setting ID to reference. */
settingId: string;
}
| {
/** The type of the manipulator. */
type: "ternary";
/** The source to manipulate. */
source: cssManipulator;
/** The value in case the source is truthy. */
true: cssManipulator | null;
/** The value in case the source is falsy. */
false: cssManipulator | null;
}
| {
/** The type of the manipulator. */
type: "textColor";
/** The source to manipulate. */
source: cssManipulator;
threshold?: cssManipulator;
/** The value for black text. */
black?: cssManipulator;
/** The value for white text. */
white?: cssManipulator;
}
| {
/** The type of the manipulator. */
type: "multiply" | "brighten";
/** The source to manipulate. */
source: cssManipulator;
/**
* The red value of the color.
*
* @default 1
*/
r?: number;
/**
* The green value of the color.
*
* @default 1
*/
g?: number;
/**
* The blue value of the color.
*
* @default 1
*/
b?: number;
/**
* The alpha/opacity value of the color.
*
* @default 1
*/
a?: number;
}
| {
/** The type of the manipulator. */
type: "alphaBlend";
/** The source that provides opaque color. */
opaqueSource: cssManipulator;
/** The source that provides transparent color. */
transparentSource: cssManipulator;
}
| {
/** The type of the manipulator. */
type: "recolorFilter";
/** The source that provides the color. */
source: cssManipulator;
}
| {
/** The type of the manipulator. */
type: "makeHsv";
/** The source that provides hue. */
h: cssManipulator;
/** The source that provides saturation. */
s: cssManipulator;
/** The source that provides value. */
v: cssManipulator;
}
| {
/** The type of the manipulator. */
type: "map";
/** The source that provides the color. */
source: cssManipulator;
/** The possible options. */
options: Record<string, cssManipulator>;
/** The default, in case the source does not map to any options. */
default?: cssManipulator;
}
| {
/** The type of the manipulator. */
type: "alphaThreshold";
/** The source that provides the color. */
source: cssManipulator;
/** The alpha threshold for using opaque color. */
threshold?: cssManipulator;
/** The opaque color. */
opaque: cssManipulator;
/** The transparent color. */
transparent: cssManipulator;
};
/**
* `"*"`: A match rule for any URL on Scratch origin. The script will execute in all pages.
*
* `/^\^/`: A RegEx match rule. Patterns starting with https will be treated as an absolute RegEx
* pattern, and patterns that don't start will be treated as an relative RegEx pattern.
*
* `[…]`: An array that contains match rules. The script will execute if it matches any of the
* rules.
*
* - `/^\^/`: A RegEx match rule. Patterns starting with https will be treated as an absolute RegEx
* pattern, and patterns that don’t start will be treated as an relative RegEx pattern.
* - `"projects"`, `"projectEmbeds"`, `"studios"`, `"studioComments"`, `"profiles"`, `"topics"`,
* `"newPostScreens"`, `"editingScreens"`, `"forums"`, `"scratchWWWNoProject"`: A match rule
* shortcut.
* - `"isNotScratchWWW"`: A match rule shortcut matcher.
* - `/^https:\/\//`: A URL match rule. TODO: Clarify this. This seemed only for absolute patterns. Is
* the relative is on the top?
*/
export type matches =
| "*"
| `^${string}`
| (
| `^${string}`
| (
| "projects"
| "projectEmbeds"
| "studios"
| "studioComments"
| "profiles"
| "topics"
| "newPostScreens"
| "editingScreens"
| "forums"
| "scratchWWWNoProject"
)
| "isNotScratchWWW"
| `https://${string}`
)[];
export type _if = { settings?: Record<string, unknown>; addonEnabled?: string | string[] };
export type serializedTableNestableSetting = boolean | number | string;
export type serializedTableNestableSettings = Record<string, serializedTableNestableSetting>;
export type tableNestableSettings = {
/** The name of the setting. */
name: string;
/** The description of the setting shown in a tooltip. */
description?: string;
/** The identifier of the setting to get the specified value from your code. */
id: string;
if?: _if;
} & (
| {
/** The type of the setting. */
type: "select";
/**
* The potential values for the select setting.
*
* A potential value for the select setting.
*/
potentialValues: (
| string
| {
/** The name of the potential value. */
name: string;
/** The identifier of the potential value. */
id: string;
}
)[];
/** The default value of the setting. */
default: string;
}
| {
/** The type of the setting. */
type: "boolean";
/** The default value of the setting. */
default: boolean;
}
| {
/** The type of the setting. */
type: "positive_integer";
/** The default value of the setting. */
default: number;
}
| {
/** The type of the setting. */
type: "string" | "untranslated";
/** The default value of the setting. */
default: string;
/** The minimum length of the string. */
min?: number;
/** The maximum length of the string. */
max?: number;
}
| {
/** The type of the setting. */
type: "color";
/** The default value of the setting. */
default: `#${string}`;
/**
* Determines whether the transparency/opacity/alpha value can be changed when choosing
* a color.
*/
allowTransparency?: boolean;
}
| {
/** The type of the setting. */
type: "integer";
/** The default value of the setting. */
default: number;
/** The minimum value of the integer. */
min?: number;
/** The maximum value of the integer. */
max?: number;
}
);
/**
* Scratch Addons addon manifest.
*
* The manifest that describes an addon.
*/
export type AddonManifest = {
/** The URL to the schema. */
$schema?: string;
/** The name of the addon. Don’t make it too long. */
name: string;
/** The description of the addons. Any credits and attributions also belong here. */
description: string;
/**
* Tags which are used for filtering and badges on the Scratch Addons settings page.
*
* A tag.
*/
tags: (
| "community"
| "editor"
| "player"
| "popup"
| "theme"
| "beta"
| "danger"
| "recommended"
| "featured"
| "forums"
| "easterEgg"
| "codeEditor"
| "costumeEditor"
| "editorMenuBar"
| "projectPage"
| "profiles"
| "studios"
| "comments"
)[];
/**
* You can specify permissions by providing a "permissions" array.
*
* A permission.
*/
permissions?: ("notifications" | "clipboardWrite")[];
/**
* You can add userscripts by providing a "userscripts" array.
*
* Unlike persistent scripts, this is an array of objects, not strings.
*
* Each object must specify the url to the userscript through the "url" property, and provide an
* array of URL matches.
*/
userscripts?: {
/** The path to the userscript. */
url: `${string}.js`;
matches: matches;
/** Determines whether the addon should be run after the document is complete loading. */
runAtComplete?: boolean;
if?: _if;
}[];
/**
* Similarly to {@link AddonManifest.userscripts userscripts}, you can specify a "userstyles"
* array.
*
* Each object must specify the url to the stylesheet through the "url" property, and provide an
* array of URL matches.
*/
userstyles?: {
/** The path to the userstyle. */
url: `${string}.css`;
matches: matches;
if?: _if;
}[];
/**
* The "settings" object allow the addon’s users to specify settings in Scratch Addons’ settings
* panel. Inside your persistent scripts and userscripts, you can then access those settings
* with the "addon.settings" API.
*
* Specify an "settings" property and provide an array of setting objects.
*
* A table setting.
*/
settings?: (
| tableNestableSettings
| {
/** The name of the setting. */
name: string;
/** The identifier of the setting to get the specified value from your code. */
id: string;
type: "table";
/** The array that contains default table items. */
default?: serializedTableNestableSettings[];
if?: _if;
/** The rows of the table. The ordering is used in default and presets. */
row: tableNestableSettings[];
/**
* The table presets.
*
* The table preset.
*/
presets?: { name: string; values: serializedTableNestableSettings }[];
}
)[];
/**
* An array containing credits to the authors/contributors of the addon.
*
* A credited author/contributor.
*/
credits?: (
| {
/** The name of the credited person. */
name: string;
/** The link relevant to the credit. */
link?: `http${string}`;
}
| {
/** The name of the credited person. */
name: string;
/** The link relevant to the credit. */
link?: `http${string}`;
/** The ID for the credit. Required if note is in use. */
id: string;
/** The note for the credit. */
note?: string;
}
)[];
/**
* You can provide the "enabledByDefault" property and set it to true. Its default value is
* false.
*
* Keep in mind, few addons will be enabled by default. If you want your addon to be enabled by
* default, please open a discussion issue.
*
* @default false
*/
enabledByDefault?: boolean;
/** An array containing presets for settings. */
presets?: {
/** The name of the preset. */
name: string;
/** The identifier of the preset. */
id: string;
/** The description of the preset. */
description?: string;
/**
* An object containing preset values of the settings.
*
* The preset value of the setting.
*/
values: Record<string, serializedTableNestableSetting | serializedTableNestableSettings[]>;
}[];
/**
* An array of libraries that the addon uses.
*
* A library identifier.
*/
libraries?: string[];
/**
* An array of additional information (e.g. warnings, notices) about the addon.
*
* Information about the addon.
*/
info?: {
/** Type of the information. */
type?: "warning" | "notice" | "info";
/** ID of the information. */
id: string;
/** Text of the information. */
text: string;
}[];
/** An object for the popup. */
popup?: {
/** The path to the popup icon. */
icon: string;
/** The name of the popup. */
name: string;
/**
* Determines whether to show the fullscreen button.
*
* @default false
*/
fullscreen?: boolean;
};
/**
* Determines whether the addon’s scripts should be considered disabled when disabled as the
* page is running.
*
* @default false
*/
dynamicDisable?: boolean;
/**
* Determines whether the addon’s scripts should be considered enabled when enabled as the page
* is running.
*
* @default false
*/
dynamicEnable?: boolean;
/**
* Determines whether the addon’s userstyles should be injected as style elements rather than
* link elements.
*
* @default false
*/
injectAsStyleElt?: boolean;
/**
* Determines whether the addon’s userstyles should be removed and rematched to the new
* settings.
*
* @default false
*/
updateUserstylesOnSettingsChange?: boolean;
/**
* An array of CSS variables the addon defines.
*
* A CSS variable.
*/
customCssVariables?: {
/** The name of the CSS variable. */
name: string;
value: cssManipulator;
/** Whether to drop the variable entirely when it evaluates to null. */
dropNull?: boolean;
}[];
/** The version that introduced the addon. */
versionAdded: `1.${number}.${number}`;
/**
* Whether the addon has a preview.
*
* @default false
*/
addonPreview?: boolean;
/** The preview used for presets. */
presetPreview?:
| {
/** The type of the preview. */
type: "palette";
colors: string[];
}
| {
/** The type of the preview. */
type: "stage-monitor-preset";
};
/** The information about the latest update. */
latestUpdate?: {
/** The version of the update. */
version: string;
/** Whether to list the addon on "Featured new addons and updates". */
isMajor?: boolean;
/** The notice describing the update. */
temporaryNotice?: string;
/** The array of new setting IDs. */
newSettings?: string[];
};
/**
* The list of related addons displayed on the settings page.
*
* An addon ID.
*/
relatedAddons?: string[];
};