@filteringdev/tinyshield 3.6.1 → 3.6.2
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/dist/index.js +3 -2
- package/dist/safe-ArrayToString.d.ts +1 -0
- package/dist/safe-ArrayToString.js +6 -1
- package/dist/tinyShield.user.js +428 -6
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -16,6 +16,7 @@ export function RunTinyShieldUserscript(BrowserWindow, UserscriptName = 'tinyShi
|
|
|
16
16
|
const OriginalArrayMap = BrowserWindow.Array.prototype.map;
|
|
17
17
|
const OriginalString = BrowserWindow.String;
|
|
18
18
|
const OriginalArrayJoin = BrowserWindow.Array.prototype.join;
|
|
19
|
+
const OriginalObjectGetPrototypeOf = BrowserWindow.Object.getPrototypeOf;
|
|
19
20
|
const ProtectedFunctionStrings = ['toString', 'get', 'set'];
|
|
20
21
|
BrowserWindow.Function.prototype.toString = new Proxy(BrowserWindow.Function.prototype.toString, {
|
|
21
22
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
@@ -38,7 +39,7 @@ export function RunTinyShieldUserscript(BrowserWindow, UserscriptName = 'tinyShi
|
|
|
38
39
|
if (Args.length > 0 && typeof Args[0] !== 'function') {
|
|
39
40
|
return Reflect.apply(Target, ThisArg, Args);
|
|
40
41
|
}
|
|
41
|
-
let ArgText = SafeArrayToString(Args, { OriginalArrayMap, OriginalString, OriginalArrayJoin });
|
|
42
|
+
let ArgText = SafeArrayToString(Args, { OriginalArrayMap, OriginalString, OriginalArrayJoin, OriginalObjectGetPrototypeOf });
|
|
42
43
|
if (ASInitPositiveRegExps.filter(ASInitPositiveRegExp => ASInitPositiveRegExp.filter(Index => OriginalRegExpTest.call(Index, ArgText)).length >= 2).length === 1) {
|
|
43
44
|
console.debug(`[${UserscriptName}]: Map.prototype.get:`, ThisArg, Args);
|
|
44
45
|
throw new Error();
|
|
@@ -58,7 +59,7 @@ export function RunTinyShieldUserscript(BrowserWindow, UserscriptName = 'tinyShi
|
|
|
58
59
|
BrowserWindow.Map.prototype.set = new Proxy(BrowserWindow.Map.prototype.set, {
|
|
59
60
|
apply(Target, ThisArg, Args) {
|
|
60
61
|
let ArgText = '';
|
|
61
|
-
ArgText = SafeArrayToString(Args, { OriginalArrayMap, OriginalString, OriginalArrayJoin });
|
|
62
|
+
ArgText = SafeArrayToString(Args, { OriginalArrayMap, OriginalString, OriginalArrayJoin, OriginalObjectGetPrototypeOf });
|
|
62
63
|
if (ASReinsertedAdvInvenPositiveRegExps.filter(ASReinsertedAdvInvenPositiveRegExp => ASReinsertedAdvInvenPositiveRegExp.filter(Index => OriginalRegExpTest.call(Index, ArgText)).length >= 3).length === 1) {
|
|
63
64
|
console.debug(`[${UserscriptName}]: Map.prototype.set:`, ThisArg, Args);
|
|
64
65
|
throw new Error();
|
|
@@ -2,6 +2,7 @@ type OriginalAPI = {
|
|
|
2
2
|
OriginalArrayMap: typeof Array.prototype.map;
|
|
3
3
|
OriginalString: typeof String;
|
|
4
4
|
OriginalArrayJoin: typeof Array.prototype.join;
|
|
5
|
+
OriginalObjectGetPrototypeOf: typeof Object.getPrototypeOf;
|
|
5
6
|
};
|
|
6
7
|
export declare function SafeArrayToString(This: unknown[], OriginalAPI: OriginalAPI): string;
|
|
7
8
|
export {};
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
export function SafeArrayToString(This, OriginalAPI) {
|
|
2
|
-
const Mapped = OriginalAPI.OriginalArrayMap.call(This, (Value) =>
|
|
2
|
+
const Mapped = OriginalAPI.OriginalArrayMap.call(This, (Value) => {
|
|
3
|
+
if (Value && typeof Value === 'object' && OriginalAPI.OriginalObjectGetPrototypeOf(Value) === null) {
|
|
4
|
+
return '[Object: null prototype]';
|
|
5
|
+
}
|
|
6
|
+
return OriginalAPI.OriginalString(Value);
|
|
7
|
+
});
|
|
3
8
|
return OriginalAPI.OriginalArrayJoin.call(Mapped);
|
|
4
9
|
}
|
package/dist/tinyShield.user.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
// @downloadURL https://cdn.jsdelivr.net/npm/@filteringdev/tinyshield@latest/dist/tinyShield.user.js
|
|
9
9
|
// @license MPL-2.0
|
|
10
10
|
//
|
|
11
|
-
// @version 3.6.
|
|
11
|
+
// @version 3.6.2
|
|
12
12
|
// @author PiQuark6046 and contributors
|
|
13
13
|
//
|
|
14
14
|
// @grant unsafeWindow
|
|
@@ -3114,6 +3114,8 @@
|
|
|
3114
3114
|
// @match *://*.bulbagarden.net/*
|
|
3115
3115
|
// @match *://brobible.com/*
|
|
3116
3116
|
// @match *://*.brobible.com/*
|
|
3117
|
+
// @match *://chunkbase.com/*
|
|
3118
|
+
// @match *://*.chunkbase.com/*
|
|
3117
3119
|
// @match *://britannica.com/*
|
|
3118
3120
|
// @match *://*.britannica.com/*
|
|
3119
3121
|
// @match *://natashaskitchen.com/*
|
|
@@ -3148,6 +3150,8 @@
|
|
|
3148
3150
|
// @match *://*.mtgdecks.net/*
|
|
3149
3151
|
// @match *://preppykitchen.com/*
|
|
3150
3152
|
// @match *://*.preppykitchen.com/*
|
|
3153
|
+
// @match *://supercheats.com/*
|
|
3154
|
+
// @match *://*.supercheats.com/*
|
|
3151
3155
|
// @match *://profootballnetwork.com/*
|
|
3152
3156
|
// @match *://*.profootballnetwork.com/*
|
|
3153
3157
|
// @match *://themediterraneandish.com/*
|
|
@@ -3226,6 +3230,10 @@
|
|
|
3226
3230
|
// @match *://*.dinneratthezoo.com/*
|
|
3227
3231
|
// @match *://mygolfspy.com/*
|
|
3228
3232
|
// @match *://*.mygolfspy.com/*
|
|
3233
|
+
// @match *://queue-times.com/*
|
|
3234
|
+
// @match *://*.queue-times.com/*
|
|
3235
|
+
// @match *://onlyinyourstate.com/*
|
|
3236
|
+
// @match *://*.onlyinyourstate.com/*
|
|
3229
3237
|
// @match *://iheartnaptime.net/*
|
|
3230
3238
|
// @match *://*.iheartnaptime.net/*
|
|
3231
3239
|
// @match *://astrostyle.com/*
|
|
@@ -3284,6 +3292,8 @@
|
|
|
3284
3292
|
// @match *://*.modernhoney.com/*
|
|
3285
3293
|
// @match *://eatingbirdfood.com/*
|
|
3286
3294
|
// @match *://*.eatingbirdfood.com/*
|
|
3295
|
+
// @match *://mocoshow.com/*
|
|
3296
|
+
// @match *://*.mocoshow.com/*
|
|
3287
3297
|
// @match *://biancazapatka.com/*
|
|
3288
3298
|
// @match *://*.biancazapatka.com/*
|
|
3289
3299
|
// @match *://a-z-animals.com/*
|
|
@@ -3518,6 +3528,8 @@
|
|
|
3518
3528
|
// @match *://*.calculator.academy/*
|
|
3519
3529
|
// @match *://keytomylime.com/*
|
|
3520
3530
|
// @match *://*.keytomylime.com/*
|
|
3531
|
+
// @match *://omnivorescookbook.com/*
|
|
3532
|
+
// @match *://*.omnivorescookbook.com/*
|
|
3521
3533
|
// @match *://butterbeready.com/*
|
|
3522
3534
|
// @match *://*.butterbeready.com/*
|
|
3523
3535
|
// @match *://snap.fan/*
|
|
@@ -3616,6 +3628,8 @@
|
|
|
3616
3628
|
// @match *://*.theeastcoastkitchen.com/*
|
|
3617
3629
|
// @match *://nikke.gg/*
|
|
3618
3630
|
// @match *://*.nikke.gg/*
|
|
3631
|
+
// @match *://illinoisloyalty.com/*
|
|
3632
|
+
// @match *://*.illinoisloyalty.com/*
|
|
3619
3633
|
// @match *://badbatchbaking.com/*
|
|
3620
3634
|
// @match *://*.badbatchbaking.com/*
|
|
3621
3635
|
// @match *://dronexl.co/*
|
|
@@ -3766,6 +3780,8 @@
|
|
|
3766
3780
|
// @match *://*.silodrome.com/*
|
|
3767
3781
|
// @match *://eatyourselfskinny.com/*
|
|
3768
3782
|
// @match *://*.eatyourselfskinny.com/*
|
|
3783
|
+
// @match *://stayfitmom.com/*
|
|
3784
|
+
// @match *://*.stayfitmom.com/*
|
|
3769
3785
|
// @match *://cnevpost.com/*
|
|
3770
3786
|
// @match *://*.cnevpost.com/*
|
|
3771
3787
|
// @match *://cookiesandcups.com/*
|
|
@@ -3980,6 +3996,8 @@
|
|
|
3980
3996
|
// @match *://*.carolinescooking.com/*
|
|
3981
3997
|
// @match *://runningtothekitchen.com/*
|
|
3982
3998
|
// @match *://*.runningtothekitchen.com/*
|
|
3999
|
+
// @match *://popville.com/*
|
|
4000
|
+
// @match *://*.popville.com/*
|
|
3983
4001
|
// @match *://whatsmomcookin.com/*
|
|
3984
4002
|
// @match *://*.whatsmomcookin.com/*
|
|
3985
4003
|
// @match *://ministryofcurry.com/*
|
|
@@ -11856,6 +11874,12 @@
|
|
|
11856
11874
|
// @match *://*.learnreligions.com/*
|
|
11857
11875
|
// @match *://verywellhealth.com/*
|
|
11858
11876
|
// @match *://*.verywellhealth.com/*
|
|
11877
|
+
// @match *://hk01.com/*
|
|
11878
|
+
// @match *://*.hk01.com/*
|
|
11879
|
+
// @match *://calculatorsoup.com/*
|
|
11880
|
+
// @match *://*.calculatorsoup.com/*
|
|
11881
|
+
// @match *://scribd.com/*
|
|
11882
|
+
// @match *://*.scribd.com/*
|
|
11859
11883
|
// @match *://egolf.jp/*
|
|
11860
11884
|
// @match *://*.egolf.jp/*
|
|
11861
11885
|
// @match *://otonanswer.jp/*
|
|
@@ -12138,8 +12162,6 @@
|
|
|
12138
12162
|
// @match *://*.wallpapers.com/*
|
|
12139
12163
|
// @match *://wordhippo.com/*
|
|
12140
12164
|
// @match *://*.wordhippo.com/*
|
|
12141
|
-
// @match *://calculatorsoup.com/*
|
|
12142
|
-
// @match *://*.calculatorsoup.com/*
|
|
12143
12165
|
// @match *://tastesbetterfromscratch.com/*
|
|
12144
12166
|
// @match *://*.tastesbetterfromscratch.com/*
|
|
12145
12167
|
// @match *://hochi.news/*
|
|
@@ -13174,8 +13196,6 @@
|
|
|
13174
13196
|
// @match *://*.urldecoder.org/*
|
|
13175
13197
|
// @match *://base64decode.org/*
|
|
13176
13198
|
// @match *://*.base64decode.org/*
|
|
13177
|
-
// @match *://scribd.com/*
|
|
13178
|
-
// @match *://*.scribd.com/*
|
|
13179
13199
|
// @match *://modhub.us/*
|
|
13180
13200
|
// @match *://*.modhub.us/*
|
|
13181
13201
|
// @match *://~dogdrip.net/*
|
|
@@ -13288,12 +13308,18 @@
|
|
|
13288
13308
|
// @match *://*.calgaryherald.com/*
|
|
13289
13309
|
// @match *://calgarysun.com/*
|
|
13290
13310
|
// @match *://*.calgarysun.com/*
|
|
13311
|
+
// @match *://canada.com/*
|
|
13312
|
+
// @match *://*.canada.com/*
|
|
13291
13313
|
// @match *://canoe.com/*
|
|
13292
13314
|
// @match *://*.canoe.com/*
|
|
13315
|
+
// @match *://driving.ca/*
|
|
13316
|
+
// @match *://*.driving.ca/*
|
|
13293
13317
|
// @match *://edmontonjournal.com/*
|
|
13294
13318
|
// @match *://*.edmontonjournal.com/*
|
|
13295
13319
|
// @match *://edmontonsun.com/*
|
|
13296
13320
|
// @match *://*.edmontonsun.com/*
|
|
13321
|
+
// @match *://financialpost.com/*
|
|
13322
|
+
// @match *://*.financialpost.com/*
|
|
13297
13323
|
// @match *://leaderpost.com/*
|
|
13298
13324
|
// @match *://*.leaderpost.com/*
|
|
13299
13325
|
// @match *://lfpress.com/*
|
|
@@ -13304,12 +13330,16 @@
|
|
|
13304
13330
|
// @match *://*.ottawacitizen.com/*
|
|
13305
13331
|
// @match *://ottawasun.com/*
|
|
13306
13332
|
// @match *://*.ottawasun.com/*
|
|
13333
|
+
// @match *://thegrowthop.com/*
|
|
13334
|
+
// @match *://*.thegrowthop.com/*
|
|
13307
13335
|
// @match *://theprovince.com/*
|
|
13308
13336
|
// @match *://*.theprovince.com/*
|
|
13309
13337
|
// @match *://thestarphoenix.com/*
|
|
13310
13338
|
// @match *://*.thestarphoenix.com/*
|
|
13311
13339
|
// @match *://vancouversun.com/*
|
|
13312
13340
|
// @match *://*.vancouversun.com/*
|
|
13341
|
+
// @match *://winnipegsun.com/*
|
|
13342
|
+
// @match *://*.winnipegsun.com/*
|
|
13313
13343
|
// @match *://imas-cg.net/*
|
|
13314
13344
|
// @match *://*.imas-cg.net/*
|
|
13315
13345
|
// @match *://people.com/*
|
|
@@ -13388,6 +13418,398 @@
|
|
|
13388
13418
|
// @match *://*.soxprospects.com/*
|
|
13389
13419
|
// @match *://kio.ac/*
|
|
13390
13420
|
// @match *://*.kio.ac/*
|
|
13421
|
+
// @match *://100layercake.com/*
|
|
13422
|
+
// @match *://*.100layercake.com/*
|
|
13423
|
+
// @match *://123atc.com/*
|
|
13424
|
+
// @match *://*.123atc.com/*
|
|
13425
|
+
// @match *://12minuteathlete.com/*
|
|
13426
|
+
// @match *://*.12minuteathlete.com/*
|
|
13427
|
+
// @match *://16powers.com/*
|
|
13428
|
+
// @match *://*.16powers.com/*
|
|
13429
|
+
// @match *://17apart.com/*
|
|
13430
|
+
// @match *://*.17apart.com/*
|
|
13431
|
+
// @match *://180sx.club/*
|
|
13432
|
+
// @match *://*.180sx.club/*
|
|
13433
|
+
// @match *://2xkofire.com/*
|
|
13434
|
+
// @match *://*.2xkofire.com/*
|
|
13435
|
+
// @match *://30seconds.com/*
|
|
13436
|
+
// @match *://*.30seconds.com/*
|
|
13437
|
+
// @match *://320sycamoreblog.com/*
|
|
13438
|
+
// @match *://*.320sycamoreblog.com/*
|
|
13439
|
+
// @match *://368chickens.com/*
|
|
13440
|
+
// @match *://*.368chickens.com/*
|
|
13441
|
+
// @match *://3dsourced.com/*
|
|
13442
|
+
// @match *://*.3dsourced.com/*
|
|
13443
|
+
// @match *://411mania.com/*
|
|
13444
|
+
// @match *://*.411mania.com/*
|
|
13445
|
+
// @match *://42droids.co.uk/*
|
|
13446
|
+
// @match *://*.42droids.co.uk/*
|
|
13447
|
+
// @match *://48daysworkout.com/*
|
|
13448
|
+
// @match *://*.48daysworkout.com/*
|
|
13449
|
+
// @match *://4pics1-word.com/*
|
|
13450
|
+
// @match *://*.4pics1-word.com/*
|
|
13451
|
+
// @match *://4wdlife.com/*
|
|
13452
|
+
// @match *://*.4wdlife.com/*
|
|
13453
|
+
// @match *://52kitchenadventures.com/*
|
|
13454
|
+
// @match *://*.52kitchenadventures.com/*
|
|
13455
|
+
// @match *://5itemsorless.com/*
|
|
13456
|
+
// @match *://*.5itemsorless.com/*
|
|
13457
|
+
// @match *://5letterwords.org/*
|
|
13458
|
+
// @match *://*.5letterwords.org/*
|
|
13459
|
+
// @match *://5thwheelforums.com/*
|
|
13460
|
+
// @match *://*.5thwheelforums.com/*
|
|
13461
|
+
// @match *://6theory.com/*
|
|
13462
|
+
// @match *://*.6theory.com/*
|
|
13463
|
+
// @match *://6thgenaccord.com/*
|
|
13464
|
+
// @match *://*.6thgenaccord.com/*
|
|
13465
|
+
// @match *://7173mustangs.com/*
|
|
13466
|
+
// @match *://*.7173mustangs.com/*
|
|
13467
|
+
// @match *://7daysofplay.com/*
|
|
13468
|
+
// @match *://*.7daysofplay.com/*
|
|
13469
|
+
// @match *://7gents.com/*
|
|
13470
|
+
// @match *://*.7gents.com/*
|
|
13471
|
+
// @match *://7yearolds.com/*
|
|
13472
|
+
// @match *://*.7yearolds.com/*
|
|
13473
|
+
// @match *://919thebend.ca/*
|
|
13474
|
+
// @match *://*.919thebend.ca/*
|
|
13475
|
+
// @match *://976-tuna.com/*
|
|
13476
|
+
// @match *://*.976-tuna.com/*
|
|
13477
|
+
// @match *://99boulders.com/*
|
|
13478
|
+
// @match *://*.99boulders.com/*
|
|
13479
|
+
// @match *://99sounds.org/*
|
|
13480
|
+
// @match *://*.99sounds.org/*
|
|
13481
|
+
// @match *://aboderie.co.uk/*
|
|
13482
|
+
// @match *://*.aboderie.co.uk/*
|
|
13483
|
+
// @match *://abrams-media.com/*
|
|
13484
|
+
// @match *://*.abrams-media.com/*
|
|
13485
|
+
// @match *://absolutesports.media/*
|
|
13486
|
+
// @match *://*.absolutesports.media/*
|
|
13487
|
+
// @match *://acasaencantada.com.br/*
|
|
13488
|
+
// @match *://*.acasaencantada.com.br/*
|
|
13489
|
+
// @match *://acatholic.org/*
|
|
13490
|
+
// @match *://*.acatholic.org/*
|
|
13491
|
+
// @match *://accelerate360.com/*
|
|
13492
|
+
// @match *://*.accelerate360.com/*
|
|
13493
|
+
// @match *://accountantforums.com/*
|
|
13494
|
+
// @match *://*.accountantforums.com/*
|
|
13495
|
+
// @match *://accuplacerpracticetest.com/*
|
|
13496
|
+
// @match *://*.accuplacerpracticetest.com/*
|
|
13497
|
+
// @match *://acharmingescape.com/*
|
|
13498
|
+
// @match *://*.acharmingescape.com/*
|
|
13499
|
+
// @match *://aconsciousrethink.com/*
|
|
13500
|
+
// @match *://*.aconsciousrethink.com/*
|
|
13501
|
+
// @match *://acooknamedmatt.com/*
|
|
13502
|
+
// @match *://*.acooknamedmatt.com/*
|
|
13503
|
+
// @match *://acraftyconcept.com/*
|
|
13504
|
+
// @match *://*.acraftyconcept.com/*
|
|
13505
|
+
// @match *://acurazdxforum.com/*
|
|
13506
|
+
// @match *://*.acurazdxforum.com/*
|
|
13507
|
+
// @match *://adayinthekitchen.com/*
|
|
13508
|
+
// @match *://*.adayinthekitchen.com/*
|
|
13509
|
+
// @match *://addicted2diy.com/*
|
|
13510
|
+
// @match *://*.addicted2diy.com/*
|
|
13511
|
+
// @match *://addictedtovacation.com/*
|
|
13512
|
+
// @match *://*.addictedtovacation.com/*
|
|
13513
|
+
// @match *://addisonswonderland.com/*
|
|
13514
|
+
// @match *://*.addisonswonderland.com/*
|
|
13515
|
+
// @match *://adimesaved.com/*
|
|
13516
|
+
// @match *://*.adimesaved.com/*
|
|
13517
|
+
// @match *://adishofdailylife.com/*
|
|
13518
|
+
// @match *://*.adishofdailylife.com/*
|
|
13519
|
+
// @match *://adventureinyou.com/*
|
|
13520
|
+
// @match *://*.adventureinyou.com/*
|
|
13521
|
+
// @match *://adviceonlyfinancial.com/*
|
|
13522
|
+
// @match *://*.adviceonlyfinancial.com/*
|
|
13523
|
+
// @match *://aeclectic.net/*
|
|
13524
|
+
// @match *://*.aeclectic.net/*
|
|
13525
|
+
// @match *://aestheticsmilereconstruction.com/*
|
|
13526
|
+
// @match *://*.aestheticsmilereconstruction.com/*
|
|
13527
|
+
// @match *://aglassofbovino.com/*
|
|
13528
|
+
// @match *://*.aglassofbovino.com/*
|
|
13529
|
+
// @match *://agoudalife.com/*
|
|
13530
|
+
// @match *://*.agoudalife.com/*
|
|
13531
|
+
// @match *://ahadventures.com/*
|
|
13532
|
+
// @match *://*.ahadventures.com/*
|
|
13533
|
+
// @match *://ahaparenting.com/*
|
|
13534
|
+
// @match *://*.ahaparenting.com/*
|
|
13535
|
+
// @match *://ahoramismo.com/*
|
|
13536
|
+
// @match *://*.ahoramismo.com/*
|
|
13537
|
+
// @match *://aimlief.com/*
|
|
13538
|
+
// @match *://*.aimlief.com/*
|
|
13539
|
+
// @match *://airfryeryum.com/*
|
|
13540
|
+
// @match *://*.airfryeryum.com/*
|
|
13541
|
+
// @match *://airhostacademy.com/*
|
|
13542
|
+
// @match *://*.airhostacademy.com/*
|
|
13543
|
+
// @match *://airoomplanner.com/*
|
|
13544
|
+
// @match *://*.airoomplanner.com/*
|
|
13545
|
+
// @match *://akeupandkale.com/*
|
|
13546
|
+
// @match *://*.akeupandkale.com/*
|
|
13547
|
+
// @match *://alderwellness.com/*
|
|
13548
|
+
// @match *://*.alderwellness.com/*
|
|
13549
|
+
// @match *://alecooks.com/*
|
|
13550
|
+
// @match *://*.alecooks.com/*
|
|
13551
|
+
// @match *://alexjessicamills.com/*
|
|
13552
|
+
// @match *://*.alexjessicamills.com/*
|
|
13553
|
+
// @match *://alidaskitchen.com/*
|
|
13554
|
+
// @match *://*.alidaskitchen.com/*
|
|
13555
|
+
// @match *://alisononfoot.com/*
|
|
13556
|
+
// @match *://*.alisononfoot.com/*
|
|
13557
|
+
// @match *://alittleinsanity.com/*
|
|
13558
|
+
// @match *://*.alittleinsanity.com/*
|
|
13559
|
+
// @match *://alkingonsunshinerecipes.com/*
|
|
13560
|
+
// @match *://*.alkingonsunshinerecipes.com/*
|
|
13561
|
+
// @match *://allaboutami.com/*
|
|
13562
|
+
// @match *://*.allaboutami.com/*
|
|
13563
|
+
// @match *://allaboutjazz.com/*
|
|
13564
|
+
// @match *://*.allaboutjazz.com/*
|
|
13565
|
+
// @match *://allaccordingtoplann.com/*
|
|
13566
|
+
// @match *://*.allaccordingtoplann.com/*
|
|
13567
|
+
// @match *://allears.net/*
|
|
13568
|
+
// @match *://*.allears.net/*
|
|
13569
|
+
// @match *://alletbliss.com/*
|
|
13570
|
+
// @match *://*.alletbliss.com/*
|
|
13571
|
+
// @match *://alleydog.com/*
|
|
13572
|
+
// @match *://*.alleydog.com/*
|
|
13573
|
+
// @match *://allflowerkitchen.com/*
|
|
13574
|
+
// @match *://*.allflowerkitchen.com/*
|
|
13575
|
+
// @match *://allfortheboys.com/*
|
|
13576
|
+
// @match *://*.allfortheboys.com/*
|
|
13577
|
+
// @match *://allkpop.com/*
|
|
13578
|
+
// @match *://*.allkpop.com/*
|
|
13579
|
+
// @match *://allsides.com/*
|
|
13580
|
+
// @match *://*.allsides.com/*
|
|
13581
|
+
// @match *://allsoundlab.net/*
|
|
13582
|
+
// @match *://*.allsoundlab.net/*
|
|
13583
|
+
// @match *://allstreetnumbers.com/*
|
|
13584
|
+
// @match *://*.allstreetnumbers.com/*
|
|
13585
|
+
// @match *://allthenourishingthings.com/*
|
|
13586
|
+
// @match *://*.allthenourishingthings.com/*
|
|
13587
|
+
// @match *://allthings.how/*
|
|
13588
|
+
// @match *://*.allthings.how/*
|
|
13589
|
+
// @match *://allthingswithpurpose.com/*
|
|
13590
|
+
// @match *://*.allthingswithpurpose.com/*
|
|
13591
|
+
// @match *://alluringsoul.com/*
|
|
13592
|
+
// @match *://*.alluringsoul.com/*
|
|
13593
|
+
// @match *://allysonvanhouten.com/*
|
|
13594
|
+
// @match *://*.allysonvanhouten.com/*
|
|
13595
|
+
// @match *://almarsguides.com/*
|
|
13596
|
+
// @match *://*.almarsguides.com/*
|
|
13597
|
+
// @match *://alonelylife.com/*
|
|
13598
|
+
// @match *://*.alonelylife.com/*
|
|
13599
|
+
// @match *://alpineella.com/*
|
|
13600
|
+
// @match *://*.alpineella.com/*
|
|
13601
|
+
// @match *://altdriver.com/*
|
|
13602
|
+
// @match *://*.altdriver.com/*
|
|
13603
|
+
// @match *://alternativedish.com/*
|
|
13604
|
+
// @match *://*.alternativedish.com/*
|
|
13605
|
+
// @match *://amarcoplumbing.com/*
|
|
13606
|
+
// @match *://*.amarcoplumbing.com/*
|
|
13607
|
+
// @match *://amazingcharcuterieboards.com/*
|
|
13608
|
+
// @match *://*.amazingcharcuterieboards.com/*
|
|
13609
|
+
// @match *://amazingfoodmadeeasy.com/*
|
|
13610
|
+
// @match *://*.amazingfoodmadeeasy.com/*
|
|
13611
|
+
// @match *://ambitiouskitchen.com/*
|
|
13612
|
+
// @match *://*.ambitiouskitchen.com/*
|
|
13613
|
+
// @match *://ambotv.com/*
|
|
13614
|
+
// @match *://*.ambotv.com/*
|
|
13615
|
+
// @match *://american-rails.com/*
|
|
13616
|
+
// @match *://*.american-rails.com/*
|
|
13617
|
+
// @match *://americansongwriter.com/*
|
|
13618
|
+
// @match *://*.americansongwriter.com/*
|
|
13619
|
+
// @match *://americanwx.com/*
|
|
13620
|
+
// @match *://*.americanwx.com/*
|
|
13621
|
+
// @match *://amiablefoods.com/*
|
|
13622
|
+
// @match *://*.amiablefoods.com/*
|
|
13623
|
+
// @match *://amiraspantry.com/*
|
|
13624
|
+
// @match *://*.amiraspantry.com/*
|
|
13625
|
+
// @match *://amish365.com/*
|
|
13626
|
+
// @match *://*.amish365.com/*
|
|
13627
|
+
// @match *://amishamerica.com/*
|
|
13628
|
+
// @match *://*.amishamerica.com/*
|
|
13629
|
+
// @match *://amortization.org/*
|
|
13630
|
+
// @match *://*.amortization.org/*
|
|
13631
|
+
// @match *://amtraktrains.com/*
|
|
13632
|
+
// @match *://*.amtraktrains.com/*
|
|
13633
|
+
// @match *://amytreasure.com/*
|
|
13634
|
+
// @match *://*.amytreasure.com/*
|
|
13635
|
+
// @match *://ana-white.com/*
|
|
13636
|
+
// @match *://*.ana-white.com/*
|
|
13637
|
+
// @match *://anagrammer.com/*
|
|
13638
|
+
// @match *://*.anagrammer.com/*
|
|
13639
|
+
// @match *://ancestral-nutrition.com/*
|
|
13640
|
+
// @match *://*.ancestral-nutrition.com/*
|
|
13641
|
+
// @match *://andercooks.com/*
|
|
13642
|
+
// @match *://*.andercooks.com/*
|
|
13643
|
+
// @match *://andering-bird.com/*
|
|
13644
|
+
// @match *://*.andering-bird.com/*
|
|
13645
|
+
// @match *://anderingcalifornia.com/*
|
|
13646
|
+
// @match *://*.anderingcalifornia.com/*
|
|
13647
|
+
// @match *://anderingchickpea.com/*
|
|
13648
|
+
// @match *://*.anderingchickpea.com/*
|
|
13649
|
+
// @match *://anderingindisney.com/*
|
|
13650
|
+
// @match *://*.anderingindisney.com/*
|
|
13651
|
+
// @match *://anderingourworld.com/*
|
|
13652
|
+
// @match *://*.anderingourworld.com/*
|
|
13653
|
+
// @match *://anderlustingk.com/*
|
|
13654
|
+
// @match *://*.anderlustingk.com/*
|
|
13655
|
+
// @match *://andersomewhere.com/*
|
|
13656
|
+
// @match *://*.andersomewhere.com/*
|
|
13657
|
+
// @match *://andersonandgrant.com/*
|
|
13658
|
+
// @match *://*.andersonandgrant.com/*
|
|
13659
|
+
// @match *://anderthewest.com/*
|
|
13660
|
+
// @match *://*.anderthewest.com/*
|
|
13661
|
+
// @match *://anderworthy.com/*
|
|
13662
|
+
// @match *://*.anderworthy.com/*
|
|
13663
|
+
// @match *://andhereweare.net/*
|
|
13664
|
+
// @match *://*.andhereweare.net/*
|
|
13665
|
+
// @match *://andreasnotebook.com/*
|
|
13666
|
+
// @match *://*.andreasnotebook.com/*
|
|
13667
|
+
// @match *://angelicalbalance.com/*
|
|
13668
|
+
// @match *://*.angelicalbalance.com/*
|
|
13669
|
+
// @match *://anothercocktailblog.com/*
|
|
13670
|
+
// @match *://*.anothercocktailblog.com/*
|
|
13671
|
+
// @match *://antennaland.com/*
|
|
13672
|
+
// @match *://*.antennaland.com/*
|
|
13673
|
+
// @match *://antique-bottles.net/*
|
|
13674
|
+
// @match *://*.antique-bottles.net/*
|
|
13675
|
+
// @match *://anysoftwaretools.com/*
|
|
13676
|
+
// @match *://*.anysoftwaretools.com/*
|
|
13677
|
+
// @match *://apistogramma.com/*
|
|
13678
|
+
// @match *://*.apistogramma.com/*
|
|
13679
|
+
// @match *://aplinsinthealps.com/*
|
|
13680
|
+
// @match *://*.aplinsinthealps.com/*
|
|
13681
|
+
// @match *://appliancerepairforums.com/*
|
|
13682
|
+
// @match *://*.appliancerepairforums.com/*
|
|
13683
|
+
// @match *://apracticalwedding.com/*
|
|
13684
|
+
// @match *://*.apracticalwedding.com/*
|
|
13685
|
+
// @match *://aquariumadvice.com/*
|
|
13686
|
+
// @match *://*.aquariumadvice.com/*
|
|
13687
|
+
// @match *://aquariustraveller.com/*
|
|
13688
|
+
// @match *://*.aquariustraveller.com/*
|
|
13689
|
+
// @match *://aquatic-eden.com/*
|
|
13690
|
+
// @match *://*.aquatic-eden.com/*
|
|
13691
|
+
// @match *://aquietrefuge.com/*
|
|
13692
|
+
// @match *://*.aquietrefuge.com/*
|
|
13693
|
+
// @match *://arbirdfanatics.com/*
|
|
13694
|
+
// @match *://*.arbirdfanatics.com/*
|
|
13695
|
+
// @match *://arboristsite.com/*
|
|
13696
|
+
// @match *://*.arboristsite.com/*
|
|
13697
|
+
// @match *://arcaneeye.com/*
|
|
13698
|
+
// @match *://*.arcaneeye.com/*
|
|
13699
|
+
// @match *://architecturelab.net/*
|
|
13700
|
+
// @match *://*.architecturelab.net/*
|
|
13701
|
+
// @match *://areweranked.com/*
|
|
13702
|
+
// @match *://*.areweranked.com/*
|
|
13703
|
+
// @match *://arframe.today/*
|
|
13704
|
+
// @match *://*.arframe.today/*
|
|
13705
|
+
// @match *://arizonasportsfans.com/*
|
|
13706
|
+
// @match *://*.arizonasportsfans.com/*
|
|
13707
|
+
// @match *://aroundthenook.com/*
|
|
13708
|
+
// @match *://*.aroundthenook.com/*
|
|
13709
|
+
// @match *://aroundtheworldpluskids.com.au/*
|
|
13710
|
+
// @match *://*.aroundtheworldpluskids.com.au/*
|
|
13711
|
+
// @match *://arrestyourdebt.com/*
|
|
13712
|
+
// @match *://*.arrestyourdebt.com/*
|
|
13713
|
+
// @match *://arrmaforum.com/*
|
|
13714
|
+
// @match *://*.arrmaforum.com/*
|
|
13715
|
+
// @match *://artofmemory.com/*
|
|
13716
|
+
// @match *://*.artofmemory.com/*
|
|
13717
|
+
// @match *://artsy-traveler.com/*
|
|
13718
|
+
// @match *://*.artsy-traveler.com/*
|
|
13719
|
+
// @match *://artsyfartsymama.com/*
|
|
13720
|
+
// @match *://*.artsyfartsymama.com/*
|
|
13721
|
+
// @match *://artycraftykids.com/*
|
|
13722
|
+
// @match *://*.artycraftykids.com/*
|
|
13723
|
+
// @match *://ascensionlogs.gg/*
|
|
13724
|
+
// @match *://*.ascensionlogs.gg/*
|
|
13725
|
+
// @match *://aseaofred.com/*
|
|
13726
|
+
// @match *://*.aseaofred.com/*
|
|
13727
|
+
// @match *://ash-eats.com/*
|
|
13728
|
+
// @match *://*.ash-eats.com/*
|
|
13729
|
+
// @match *://ashadeofteal.com/*
|
|
13730
|
+
// @match *://*.ashadeofteal.com/*
|
|
13731
|
+
// @match *://ashevilletrails.com/*
|
|
13732
|
+
// @match *://*.ashevilletrails.com/*
|
|
13733
|
+
// @match *://askmormongirl.com/*
|
|
13734
|
+
// @match *://*.askmormongirl.com/*
|
|
13735
|
+
// @match *://astyleset.com/*
|
|
13736
|
+
// @match *://*.astyleset.com/*
|
|
13737
|
+
// @match *://aswbpracticeexam.com/*
|
|
13738
|
+
// @match *://*.aswbpracticeexam.com/*
|
|
13739
|
+
// @match *://at-my-table.com/*
|
|
13740
|
+
// @match *://*.at-my-table.com/*
|
|
13741
|
+
// @match *://at4forum.com/*
|
|
13742
|
+
// @match *://*.at4forum.com/*
|
|
13743
|
+
// @match *://atastefortravel.ca/*
|
|
13744
|
+
// @match *://*.atastefortravel.ca/*
|
|
13745
|
+
// @match *://atchers.news/*
|
|
13746
|
+
// @match *://*.atchers.news/*
|
|
13747
|
+
// @match *://aterheaterleakinginfo.com/*
|
|
13748
|
+
// @match *://*.aterheaterleakinginfo.com/*
|
|
13749
|
+
// @match *://aternitylab.com/*
|
|
13750
|
+
// @match *://*.aternitylab.com/*
|
|
13751
|
+
// @match *://atertemp.org/*
|
|
13752
|
+
// @match *://*.atertemp.org/*
|
|
13753
|
+
// @match *://athletelunchbox.com/*
|
|
13754
|
+
// @match *://*.athletelunchbox.com/*
|
|
13755
|
+
// @match *://athomebyheather.com/*
|
|
13756
|
+
// @match *://*.athomebyheather.com/*
|
|
13757
|
+
// @match *://athoughtfulplaceblog.com/*
|
|
13758
|
+
// @match *://*.athoughtfulplaceblog.com/*
|
|
13759
|
+
// @match *://atlantablackstar.com/*
|
|
13760
|
+
// @match *://*.atlantablackstar.com/*
|
|
13761
|
+
// @match *://atlantatrails.com/*
|
|
13762
|
+
// @match *://*.atlantatrails.com/*
|
|
13763
|
+
// @match *://atqa005.com/*
|
|
13764
|
+
// @match *://*.atqa005.com/*
|
|
13765
|
+
// @match *://atraditionallife.com/*
|
|
13766
|
+
// @match *://*.atraditionallife.com/*
|
|
13767
|
+
// @match *://atshq.org/*
|
|
13768
|
+
// @match *://*.atshq.org/*
|
|
13769
|
+
// @match *://aturtleslifeforme.com/*
|
|
13770
|
+
// @match *://*.aturtleslifeforme.com/*
|
|
13771
|
+
// @match *://aubreyskitchen.com/*
|
|
13772
|
+
// @match *://*.aubreyskitchen.com/*
|
|
13773
|
+
// @match *://audio-forums.com/*
|
|
13774
|
+
// @match *://*.audio-forums.com/*
|
|
13775
|
+
// @match *://audioassemble.com/*
|
|
13776
|
+
// @match *://*.audioassemble.com/*
|
|
13777
|
+
// @match *://aupacanow.com/*
|
|
13778
|
+
// @match *://*.aupacanow.com/*
|
|
13779
|
+
// @match *://aussiegreenthumb.com/*
|
|
13780
|
+
// @match *://*.aussiegreenthumb.com/*
|
|
13781
|
+
// @match *://aussiehomebrewer.com/*
|
|
13782
|
+
// @match *://*.aussiehomebrewer.com/*
|
|
13783
|
+
// @match *://aussiepythons.com/*
|
|
13784
|
+
// @match *://*.aussiepythons.com/*
|
|
13785
|
+
// @match *://autismforums.com/*
|
|
13786
|
+
// @match *://*.autismforums.com/*
|
|
13787
|
+
// @match *://automaticwasher.org/*
|
|
13788
|
+
// @match *://*.automaticwasher.org/*
|
|
13789
|
+
// @match *://automoblog.net/*
|
|
13790
|
+
// @match *://*.automoblog.net/*
|
|
13791
|
+
// @match *://averagesocialite.com/*
|
|
13792
|
+
// @match *://*.averagesocialite.com/*
|
|
13793
|
+
// @match *://avforums.com/*
|
|
13794
|
+
// @match *://*.avforums.com/*
|
|
13795
|
+
// @match *://aviationa2z.com/*
|
|
13796
|
+
// @match *://*.aviationa2z.com/*
|
|
13797
|
+
// @match *://avidgamer.gg/*
|
|
13798
|
+
// @match *://*.avidgamer.gg/*
|
|
13799
|
+
// @match *://avirtuouswoman.org/*
|
|
13800
|
+
// @match *://*.avirtuouswoman.org/*
|
|
13801
|
+
// @match *://avocadopesto.com/*
|
|
13802
|
+
// @match *://*.avocadopesto.com/*
|
|
13803
|
+
// @match *://avpcentral.com/*
|
|
13804
|
+
// @match *://*.avpcentral.com/*
|
|
13805
|
+
// @match *://avyhaircare.com/*
|
|
13806
|
+
// @match *://*.avyhaircare.com/*
|
|
13807
|
+
// @match *://awickedwhisk.com/*
|
|
13808
|
+
// @match *://*.awickedwhisk.com/*
|
|
13809
|
+
// @match *://az900practicetest.com/*
|
|
13810
|
+
// @match *://*.az900practicetest.com/*
|
|
13811
|
+
// @match *://azlinamin.com/*
|
|
13812
|
+
// @match *://*.azlinamin.com/*
|
|
13391
13813
|
// @match *://notebookcheck.co/*
|
|
13392
13814
|
// @match *://*.notebookcheck.co/*
|
|
13393
13815
|
// @match *://notebookcheck.de/*
|
|
@@ -13679,7 +14101,7 @@
|
|
|
13679
14101
|
// ==/UserScript==
|
|
13680
14102
|
|
|
13681
14103
|
|
|
13682
|
-
(()=>{function
|
|
14104
|
+
(()=>{function z(t,o){let i=new Set(o);return new Set(t.filter(l=>i.has(l))).size}function k(t){if(typeof t[0]!="object"||z(["device","id","imp","regs","site","source"],Object.keys(t[0]))<5)return!1;let o=/^[0-9]+\/[a-zA-Z0-9]+\/[a-zA-Z0-9]+\/[a-z0-9-\(\)]+\/[a-zA-Z0-9_]+_slot[0-9]+_+/;return!(typeof Object.keys(t[0]).find(a=>typeof t[0][a]=="object"&&Array.isArray(t[0][a])&&t[0][a].filter(l=>typeof l=="object"&&Object.keys(l).filter(f=>typeof f=="string"&&Z.call(o,f))).length>=1)>"u")}function c(t,o){let i=o.OriginalArrayMap.call(t,a=>a&&typeof a=="object"&&o.OriginalObjectGetPrototypeOf(a)===null?"[Object: null prototype]":o.OriginalString(a));return o.OriginalArrayJoin.call(i)}var m=typeof unsafeWindow<"u"?unsafeWindow:window,Z=m.RegExp.prototype.test;function d(t,o="tinyShield"){let i=t.RegExp.prototype.test,a=t.Array.prototype.map,l=t.String,f=t.Array.prototype.join,s=t.Object.getPrototypeOf,A=["toString","get","set"];t.Function.prototype.toString=new Proxy(t.Function.prototype.toString,{apply(r,n,e){return A.includes(n.name)?`function ${n.name}() { [native code] }`:Reflect.apply(r,n,e)}});let S=[[/[a-zA-Z0-9]+ *=> *{ *const *[a-zA-Z0-9]+ *= *[a-zA-Z0-9]+ *; *if/,/===? *[a-zA-Z0-9]+ *\[ *[a-zA-Z0-9]+\( *[0-9a-z]+ *\) *\] *\) *return *[a-zA-Z0-9]+ *\( *{ *('|")?inventoryId('|")? *:/,/{ *('|")?inventoryId('|")? *: *this *\[[a-zA-Z0-9]+ *\( *[0-9a-z]+ *\) *\] *, *\.\.\. *[a-zA-Z0-9]+ *\[ *[a-zA-Z0-9]+ *\( *[0-9a-z]+ * *\) *\] *} *\)/]];t.Map.prototype.get=new Proxy(t.Map.prototype.get,{apply(r,n,e){if(e.length>0&&typeof e[0]!="function")return Reflect.apply(r,n,e);let p=c(e,{OriginalArrayMap:a,OriginalString:l,OriginalArrayJoin:f,OriginalObjectGetPrototypeOf:s});if(S.filter(y=>y.filter(u=>i.call(u,p)).length>=2).length===1)throw console.debug(`[${o}]: Map.prototype.get:`,n,e),new Error;return Reflect.apply(r,n,e)}});let O=[[/inventory_id,[a-zA-Z0-9-]+\/[a-zA-Z0-9]+\/[a-zA-Z0-9]+/,/inventory_id,[a-zA-Z0-9-]+\/[a-zA-Z0-9]+\/[a-zA-Z0-9]+/,/inventory_id,[a-zA-Z0-9-]+\/[a-zA-Z0-9]+\/[a-zA-Z0-9]+/],[/[a-z0-9A-Z]+\.setAttribute\( *('|")onload('|") *, *('|")! *async *function\( *\) *\{ *let */,/confirm\( *[A-Za-z0-9]+ *\) *\) *{ *const *[A-Za-z0-9]+ *= *new *[A-Za-z0-9]+\.URL\(('|")https:\/\/report\.error-report\.com\//,/\.forEach *\( *\( *[A-Za-z0-9]+ *=> *[A-Za-z0-9]+\.remove *\( *\) *\) *\) *\) *, *[0-9a-f]+ *\) *; *const *[A-Za-z0-9]+ *= *await *\( *await *fetch *\(/]];t.Map.prototype.set=new Proxy(t.Map.prototype.set,{apply(r,n,e){let p="";if(p=c(e,{OriginalArrayMap:a,OriginalString:l,OriginalArrayJoin:f,OriginalObjectGetPrototypeOf:s}),O.filter(y=>y.filter(u=>i.call(u,p)).length>=3).length===1)throw console.debug(`[${o}]: Map.prototype.set:`,n,e),new Error;return Reflect.apply(r,n,e)}}),t.WeakMap.prototype.set=new Proxy(t.WeakMap.prototype.set,{apply(r,n,e){if(k(e))throw console.debug(`[${o}]: WeakMap.prototype.set:`,n,e),new Error;return Reflect.apply(r,n,e)}});let g=[[/async *\( *\) *=> *{ *const *[A-Za-z0-9]+ *= *[A-Za-z0-9]+ *; *await *[A-Za-z0-9]+ *\( *\)/,/; *await *[A-Za-z0-9]+ *\( *\) *, *[A-Za-z0-9]+ *\( *! *1 *, *new *Error *\( *[A-Za-z0-9]+ *\( *[0-9a-f]+ *\) *\) *\) *}/,/ *\) *\) *\) *}/]];t.setTimeout=new Proxy(t.setTimeout,{apply(r,n,e){if(g.filter(p=>p.filter(y=>y.test(e[0].toString())).length>=3).length===1){console.debug(`[${o}]: setTimeout:`,e);return}return Reflect.apply(r,n,e)}}),t.setInterval=new Proxy(t.setInterval,{apply(r,n,e){if(g.filter(p=>p.filter(y=>y.test(e[0].toString())).length>=3).length===1){console.debug(`[${o}]: setInterval:`,e);return}return Reflect.apply(r,n,e)}})}d(m);})();
|
|
13683
14105
|
/*!
|
|
13684
14106
|
* @license MPL-2.0
|
|
13685
14107
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@filteringdev/tinyshield",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"builder"
|
|
33
33
|
],
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@typescript-eslint/eslint-plugin": "^8.56.
|
|
36
|
-
"@typescript-eslint/parser": "^8.56.
|
|
37
|
-
"eslint": "10",
|
|
38
|
-
"typescript-eslint": "^8.56.
|
|
35
|
+
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
36
|
+
"@typescript-eslint/parser": "^8.56.1",
|
|
37
|
+
"eslint": "^10.0.2",
|
|
38
|
+
"typescript-eslint": "^8.56.1"
|
|
39
39
|
}
|
|
40
40
|
}
|