browser-extension-manager 1.1.6 → 1.1.7
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/CHANGELOG.md +11 -0
- package/dist/config/manifest.json +7 -6
- package/dist/gulp/tasks/audit.js +8 -4
- package/dist/gulp/tasks/package.js +1 -0
- package/firebase-debug.log +238 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
17
|
---
|
|
18
|
+
## [1.1.6] - 2025-11-14
|
|
19
|
+
### Added
|
|
20
|
+
- Bootstrap exposure to `window.bootstrap` in all UI components (popup, options, sidepanel, page)
|
|
21
|
+
- `@popperjs/core` dependency for Bootstrap's Dropdown, Tooltip, and Popover components
|
|
22
|
+
- Project-specific JS files to webpack watch paths for improved hot reloading
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- Modernized content.js manager from prototype-based to ES6 class syntax with async/await
|
|
26
|
+
- Updated affiliatizer import to use dynamic import in content.js
|
|
27
|
+
- Improved logging consistency across all manager classes
|
|
28
|
+
|
|
18
29
|
## [1.1.1] - 2025-11-13
|
|
19
30
|
### Changed
|
|
20
31
|
- Simplified build.js configuration generation by removing webManager config overrides
|
|
@@ -42,12 +42,13 @@
|
|
|
42
42
|
|
|
43
43
|
// Browser action
|
|
44
44
|
action: {
|
|
45
|
-
default_icon: {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
},
|
|
45
|
+
// default_icon: {
|
|
46
|
+
// '48': 'assets/images/icons/icon-48x.png',
|
|
47
|
+
// '32': 'assets/images/icons/icon-32x.png',
|
|
48
|
+
// '24': 'assets/images/icons/icon-24x.png',
|
|
49
|
+
// '16': 'assets/images/icons/icon-16x.png',
|
|
50
|
+
// },
|
|
51
|
+
default_icon: 'assets/images/icons/icon-48x.png',
|
|
51
52
|
default_title: '__MSG_appName__',
|
|
52
53
|
// default_popup: '', // Disabled so we can customize what happens on click
|
|
53
54
|
},
|
package/dist/gulp/tasks/audit.js
CHANGED
|
@@ -23,15 +23,19 @@ const EXTERNAL_SCRIPT_PATTERNS = [
|
|
|
23
23
|
/<script[^>]*src=["'](https?:\/\/[^"']+)["']/gi,
|
|
24
24
|
// Dynamic script creation
|
|
25
25
|
/createElement\s*\(\s*["']script["']\s*\)[^}]*src\s*=\s*["'](https?:\/\/[^"']+)["']/gi,
|
|
26
|
-
// Direct URL assignments to src
|
|
27
|
-
/\.src\s*=\s*["'](https?:\/\/[^"']
|
|
26
|
+
// Direct URL assignments to src (for scripts)
|
|
27
|
+
/\.src\s*=\s*["'](https?:\/\/[^"']+\.js[^"']*)["']/gi,
|
|
28
28
|
// fetch/XMLHttpRequest calls to external URLs (common pattern for loading scripts)
|
|
29
29
|
/fetch\s*\(\s*["'](https?:\/\/[^"']+\.js[^"']*)["']/gi,
|
|
30
30
|
/XMLHttpRequest[^}]*open\s*\([^,]*,\s*["'](https?:\/\/[^"']+\.js[^"']*)["']/gi,
|
|
31
31
|
// import() dynamic imports of external URLs
|
|
32
|
-
/import\s*\(\s*["'](https?:\/\/[^"']
|
|
32
|
+
/import\s*\(\s*["'](https?:\/\/[^"']+\.js[^"']*)["']/gi,
|
|
33
33
|
// require() of external URLs
|
|
34
|
-
/require\s*\(\s*["'](https?:\/\/[^"']
|
|
34
|
+
/require\s*\(\s*["'](https?:\/\/[^"']+\.js[^"']*)["']/gi,
|
|
35
|
+
// Script-specific CDN URLs (must end in .js or be script-related CDN patterns)
|
|
36
|
+
/["'](https?:\/\/[^"']*(?:sentry-cdn|unpkg|jsdelivr|cdnjs)[^"']*\.js[^"']*)["']/gi,
|
|
37
|
+
// Script loading from CDN base URLs (e.g., recaptcha, Google APIs)
|
|
38
|
+
/["'](https?:\/\/(?:www\.)?(?:google\.com\/recaptcha|apis\.google\.com)[^"']*)["']/gi,
|
|
35
39
|
];
|
|
36
40
|
|
|
37
41
|
// Check a single file for external script references
|
|
@@ -429,5 +429,6 @@ function getRedactions() {
|
|
|
429
429
|
'https://www.google.com/recaptcha/enterprise.js': REDACTED + 3,
|
|
430
430
|
'https://apis.google.com/js/api.js': REDACTED + 4,
|
|
431
431
|
'https://www.google.com/recaptcha/api.js': REDACTED + 5,
|
|
432
|
+
'https://browser.sentry-cdn.com': REDACTED + 6,
|
|
432
433
|
}
|
|
433
434
|
}
|
package/firebase-debug.log
CHANGED
|
@@ -460,3 +460,241 @@
|
|
|
460
460
|
[debug] [2025-11-14T22:30:26.540Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
461
461
|
[debug] [2025-11-14T22:30:26.540Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
462
462
|
[debug] [2025-11-14T22:30:26.540Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
463
|
+
[debug] [2025-11-16T04:10:58.603Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
464
|
+
[debug] [2025-11-16T04:10:58.604Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
465
|
+
[debug] [2025-11-16T04:10:58.606Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
466
|
+
[debug] [2025-11-16T04:10:58.606Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
467
|
+
[debug] [2025-11-16T04:10:58.606Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
468
|
+
[debug] [2025-11-16T04:10:58.613Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
469
|
+
[debug] [2025-11-16T04:10:58.614Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
470
|
+
[debug] [2025-11-16T04:10:58.605Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
471
|
+
[debug] [2025-11-16T04:10:58.605Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
472
|
+
[debug] [2025-11-16T04:10:58.606Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
473
|
+
[debug] [2025-11-16T04:10:58.614Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
474
|
+
[debug] [2025-11-16T04:10:58.614Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
475
|
+
[debug] [2025-11-16T04:10:58.679Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
476
|
+
[debug] [2025-11-16T04:10:58.681Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
477
|
+
[debug] [2025-11-16T04:10:58.679Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
478
|
+
[debug] [2025-11-16T04:10:58.680Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
479
|
+
[debug] [2025-11-16T04:10:58.680Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
480
|
+
[debug] [2025-11-16T04:10:58.681Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
481
|
+
[debug] [2025-11-16T04:10:58.681Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
482
|
+
[debug] [2025-11-16T04:10:58.682Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
483
|
+
[debug] [2025-11-16T04:10:58.682Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
484
|
+
[debug] [2025-11-16T04:10:58.681Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
485
|
+
[debug] [2025-11-16T04:10:58.682Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
486
|
+
[debug] [2025-11-16T04:10:58.682Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
487
|
+
[debug] [2025-11-16T04:10:58.684Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
488
|
+
[debug] [2025-11-16T04:10:58.684Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
489
|
+
[debug] [2025-11-16T04:10:58.684Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
490
|
+
[debug] [2025-11-16T04:10:58.684Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
491
|
+
[debug] [2025-11-16T04:12:51.430Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
492
|
+
[debug] [2025-11-16T04:12:51.441Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
493
|
+
[debug] [2025-11-16T04:12:51.432Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
494
|
+
[debug] [2025-11-16T04:12:51.433Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
495
|
+
[debug] [2025-11-16T04:12:51.433Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
496
|
+
[debug] [2025-11-16T04:12:51.446Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
497
|
+
[debug] [2025-11-16T04:12:51.447Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
498
|
+
[debug] [2025-11-16T04:12:51.444Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
499
|
+
[debug] [2025-11-16T04:12:51.444Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
500
|
+
[debug] [2025-11-16T04:12:51.444Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
501
|
+
[debug] [2025-11-16T04:12:51.454Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
502
|
+
[debug] [2025-11-16T04:12:51.455Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
503
|
+
[debug] [2025-11-16T04:12:51.517Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
504
|
+
[debug] [2025-11-16T04:12:51.517Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
505
|
+
[debug] [2025-11-16T04:12:51.518Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
506
|
+
[debug] [2025-11-16T04:12:51.518Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
507
|
+
[debug] [2025-11-16T04:12:51.520Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
508
|
+
[debug] [2025-11-16T04:12:51.520Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
509
|
+
[debug] [2025-11-16T04:12:51.520Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
510
|
+
[debug] [2025-11-16T04:12:51.521Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
511
|
+
[debug] [2025-11-16T04:12:51.539Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
512
|
+
[debug] [2025-11-16T04:12:51.539Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
513
|
+
[debug] [2025-11-16T04:12:51.539Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
514
|
+
[debug] [2025-11-16T04:12:51.540Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
515
|
+
[debug] [2025-11-16T04:12:51.541Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
516
|
+
[debug] [2025-11-16T04:12:51.541Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
517
|
+
[debug] [2025-11-16T04:12:51.542Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
518
|
+
[debug] [2025-11-16T04:12:51.542Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
519
|
+
[debug] [2025-11-16T04:12:55.095Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
520
|
+
[debug] [2025-11-16T04:12:55.096Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
521
|
+
[debug] [2025-11-16T04:12:55.099Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
522
|
+
[debug] [2025-11-16T04:12:55.100Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
523
|
+
[debug] [2025-11-16T04:12:55.100Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
524
|
+
[debug] [2025-11-16T04:12:55.109Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
525
|
+
[debug] [2025-11-16T04:12:55.109Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
526
|
+
[debug] [2025-11-16T04:12:55.099Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
527
|
+
[debug] [2025-11-16T04:12:55.099Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
528
|
+
[debug] [2025-11-16T04:12:55.099Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
529
|
+
[debug] [2025-11-16T04:12:55.119Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
530
|
+
[debug] [2025-11-16T04:12:55.121Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
531
|
+
[debug] [2025-11-16T04:12:55.249Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
532
|
+
[debug] [2025-11-16T04:12:55.251Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
533
|
+
[debug] [2025-11-16T04:12:55.249Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
534
|
+
[debug] [2025-11-16T04:12:55.249Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
535
|
+
[debug] [2025-11-16T04:12:55.250Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
536
|
+
[debug] [2025-11-16T04:12:55.251Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
537
|
+
[debug] [2025-11-16T04:12:55.251Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
538
|
+
[debug] [2025-11-16T04:12:55.253Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
539
|
+
[debug] [2025-11-16T04:12:55.253Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
540
|
+
[debug] [2025-11-16T04:12:55.251Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
541
|
+
[debug] [2025-11-16T04:12:55.252Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
542
|
+
[debug] [2025-11-16T04:12:55.252Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
543
|
+
[debug] [2025-11-16T04:12:55.253Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
544
|
+
[debug] [2025-11-16T04:12:55.253Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
545
|
+
[debug] [2025-11-16T04:12:55.254Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
546
|
+
[debug] [2025-11-16T04:12:55.254Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
547
|
+
[debug] [2025-11-16T04:12:56.312Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
548
|
+
[debug] [2025-11-16T04:12:56.314Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
549
|
+
[debug] [2025-11-16T04:12:56.318Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
550
|
+
[debug] [2025-11-16T04:12:56.318Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
551
|
+
[debug] [2025-11-16T04:12:56.326Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
552
|
+
[debug] [2025-11-16T04:12:56.326Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
553
|
+
[debug] [2025-11-16T04:12:56.389Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
554
|
+
[debug] [2025-11-16T04:12:56.389Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
555
|
+
[debug] [2025-11-16T04:12:56.390Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
556
|
+
[debug] [2025-11-16T04:12:56.390Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
557
|
+
[debug] [2025-11-16T04:12:56.391Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
558
|
+
[debug] [2025-11-16T04:12:56.391Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
559
|
+
[debug] [2025-11-16T04:12:56.392Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
560
|
+
[debug] [2025-11-16T04:12:56.392Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
561
|
+
[debug] [2025-11-16T04:37:29.942Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
562
|
+
[debug] [2025-11-16T04:37:29.943Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
563
|
+
[debug] [2025-11-16T04:37:29.944Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
564
|
+
[debug] [2025-11-16T04:37:29.944Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
565
|
+
[debug] [2025-11-16T04:37:29.944Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
566
|
+
[debug] [2025-11-16T04:37:29.953Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
567
|
+
[debug] [2025-11-16T04:37:29.953Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
568
|
+
[debug] [2025-11-16T04:37:29.945Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
569
|
+
[debug] [2025-11-16T04:37:29.945Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
570
|
+
[debug] [2025-11-16T04:37:29.945Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
571
|
+
[debug] [2025-11-16T04:37:29.956Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
572
|
+
[debug] [2025-11-16T04:37:29.957Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
573
|
+
[debug] [2025-11-16T04:37:30.016Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
574
|
+
[debug] [2025-11-16T04:37:30.016Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
575
|
+
[debug] [2025-11-16T04:37:30.016Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
576
|
+
[debug] [2025-11-16T04:37:30.017Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
577
|
+
[debug] [2025-11-16T04:37:30.018Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
578
|
+
[debug] [2025-11-16T04:37:30.016Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
579
|
+
[debug] [2025-11-16T04:37:30.017Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
580
|
+
[debug] [2025-11-16T04:37:30.017Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
581
|
+
[debug] [2025-11-16T04:37:30.018Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
582
|
+
[debug] [2025-11-16T04:37:30.019Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
583
|
+
[debug] [2025-11-16T04:37:30.019Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
584
|
+
[debug] [2025-11-16T04:37:30.019Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
585
|
+
[debug] [2025-11-16T04:37:30.019Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
586
|
+
[debug] [2025-11-16T04:37:30.019Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
587
|
+
[debug] [2025-11-16T04:37:30.019Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
588
|
+
[debug] [2025-11-16T04:37:30.019Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
589
|
+
[debug] [2025-11-16T04:37:33.029Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
590
|
+
[debug] [2025-11-16T04:37:33.032Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
591
|
+
[debug] [2025-11-16T04:37:33.032Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
592
|
+
[debug] [2025-11-16T04:37:33.032Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
593
|
+
[debug] [2025-11-16T04:37:33.046Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
594
|
+
[debug] [2025-11-16T04:37:33.047Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
595
|
+
[debug] [2025-11-16T04:37:33.059Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
596
|
+
[debug] [2025-11-16T04:37:33.062Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
597
|
+
[debug] [2025-11-16T04:37:33.062Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
598
|
+
[debug] [2025-11-16T04:37:33.062Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
599
|
+
[debug] [2025-11-16T04:37:33.087Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
600
|
+
[debug] [2025-11-16T04:37:33.088Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
601
|
+
[debug] [2025-11-16T04:37:33.138Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
602
|
+
[debug] [2025-11-16T04:37:33.138Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
603
|
+
[debug] [2025-11-16T04:37:33.139Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
604
|
+
[debug] [2025-11-16T04:37:33.139Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
605
|
+
[debug] [2025-11-16T04:37:33.141Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
606
|
+
[debug] [2025-11-16T04:37:33.141Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
607
|
+
[debug] [2025-11-16T04:37:33.142Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
608
|
+
[debug] [2025-11-16T04:37:33.142Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
609
|
+
[debug] [2025-11-16T04:37:33.183Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
610
|
+
[debug] [2025-11-16T04:37:33.184Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
611
|
+
[debug] [2025-11-16T04:37:33.184Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
612
|
+
[debug] [2025-11-16T04:37:33.185Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
613
|
+
[debug] [2025-11-16T04:37:33.186Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
614
|
+
[debug] [2025-11-16T04:37:33.186Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
615
|
+
[debug] [2025-11-16T04:37:33.186Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
616
|
+
[debug] [2025-11-16T04:37:33.186Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
617
|
+
[debug] [2025-11-16T04:37:35.241Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
618
|
+
[debug] [2025-11-16T04:37:35.243Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
619
|
+
[debug] [2025-11-16T04:37:35.243Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
620
|
+
[debug] [2025-11-16T04:37:35.243Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
621
|
+
[debug] [2025-11-16T04:37:35.250Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
622
|
+
[debug] [2025-11-16T04:37:35.250Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
623
|
+
[debug] [2025-11-16T04:37:35.309Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
624
|
+
[debug] [2025-11-16T04:37:35.309Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
625
|
+
[debug] [2025-11-16T04:37:35.309Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
626
|
+
[debug] [2025-11-16T04:37:35.310Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
627
|
+
[debug] [2025-11-16T04:37:35.311Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
628
|
+
[debug] [2025-11-16T04:37:35.311Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
629
|
+
[debug] [2025-11-16T04:37:35.311Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
630
|
+
[debug] [2025-11-16T04:37:35.311Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
631
|
+
[debug] [2025-11-17T02:12:00.648Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
632
|
+
[debug] [2025-11-17T02:12:00.650Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
633
|
+
[debug] [2025-11-17T02:12:00.650Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
634
|
+
[debug] [2025-11-17T02:12:00.650Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
635
|
+
[debug] [2025-11-17T02:12:00.663Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
636
|
+
[debug] [2025-11-17T02:12:00.664Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
637
|
+
[debug] [2025-11-17T02:12:00.730Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
638
|
+
[debug] [2025-11-17T02:12:00.731Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
639
|
+
[debug] [2025-11-17T02:12:00.731Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
640
|
+
[debug] [2025-11-17T02:12:00.732Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
641
|
+
[debug] [2025-11-17T02:12:00.733Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
642
|
+
[debug] [2025-11-17T02:12:00.733Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
643
|
+
[debug] [2025-11-17T02:12:00.734Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
644
|
+
[debug] [2025-11-17T02:12:00.734Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
645
|
+
[debug] [2025-11-17T02:12:00.841Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
646
|
+
[debug] [2025-11-17T02:12:00.843Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
647
|
+
[debug] [2025-11-17T02:12:00.843Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
648
|
+
[debug] [2025-11-17T02:12:00.843Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
649
|
+
[debug] [2025-11-17T02:12:00.852Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
650
|
+
[debug] [2025-11-17T02:12:00.853Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
651
|
+
[debug] [2025-11-17T02:12:00.923Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
652
|
+
[debug] [2025-11-17T02:12:00.923Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
653
|
+
[debug] [2025-11-17T02:12:00.924Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
654
|
+
[debug] [2025-11-17T02:12:00.924Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
655
|
+
[debug] [2025-11-17T02:12:00.925Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
656
|
+
[debug] [2025-11-17T02:12:00.925Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
657
|
+
[debug] [2025-11-17T02:12:00.926Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
658
|
+
[debug] [2025-11-17T02:12:00.926Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
659
|
+
[debug] [2025-11-17T02:14:06.006Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
660
|
+
[debug] [2025-11-17T02:14:06.008Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
661
|
+
[debug] [2025-11-17T02:14:06.009Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
662
|
+
[debug] [2025-11-17T02:14:06.009Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
663
|
+
[debug] [2025-11-17T02:14:06.021Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
664
|
+
[debug] [2025-11-17T02:14:06.021Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
665
|
+
[debug] [2025-11-17T02:14:06.083Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
666
|
+
[debug] [2025-11-17T02:14:06.083Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
667
|
+
[debug] [2025-11-17T02:14:06.084Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
668
|
+
[debug] [2025-11-17T02:14:06.084Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
669
|
+
[debug] [2025-11-17T02:14:06.085Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
670
|
+
[debug] [2025-11-17T02:14:06.085Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
671
|
+
[debug] [2025-11-17T02:14:06.086Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
672
|
+
[debug] [2025-11-17T02:14:06.086Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
673
|
+
[debug] [2025-11-17T03:02:32.518Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
674
|
+
[debug] [2025-11-17T03:02:32.520Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
675
|
+
[debug] [2025-11-17T03:02:32.520Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
676
|
+
[debug] [2025-11-17T03:02:32.521Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
677
|
+
[debug] [2025-11-17T03:02:32.521Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
678
|
+
[debug] [2025-11-17T03:02:32.530Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
679
|
+
[debug] [2025-11-17T03:02:32.531Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
680
|
+
[debug] [2025-11-17T03:02:32.522Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
681
|
+
[debug] [2025-11-17T03:02:32.522Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
682
|
+
[debug] [2025-11-17T03:02:32.523Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
683
|
+
[debug] [2025-11-17T03:02:32.534Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
684
|
+
[debug] [2025-11-17T03:02:32.535Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
685
|
+
[debug] [2025-11-17T03:02:32.599Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
686
|
+
[debug] [2025-11-17T03:02:32.599Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
687
|
+
[debug] [2025-11-17T03:02:32.600Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
688
|
+
[debug] [2025-11-17T03:02:32.600Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
689
|
+
[debug] [2025-11-17T03:02:32.602Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
690
|
+
[debug] [2025-11-17T03:02:32.602Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
691
|
+
[debug] [2025-11-17T03:02:32.602Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
692
|
+
[debug] [2025-11-17T03:02:32.602Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
693
|
+
[debug] [2025-11-17T03:02:32.605Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
694
|
+
[debug] [2025-11-17T03:02:32.606Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
695
|
+
[debug] [2025-11-17T03:02:32.606Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
696
|
+
[debug] [2025-11-17T03:02:32.606Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
697
|
+
[debug] [2025-11-17T03:02:32.608Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
698
|
+
[debug] [2025-11-17T03:02:32.608Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
699
|
+
[debug] [2025-11-17T03:02:32.609Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
700
|
+
[debug] [2025-11-17T03:02:32.609Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browser-extension-manager",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "Browser Extension Manager dependency manager",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"projectScripts": {
|
|
36
36
|
"start": "npx bxm clean && npx bxm setup && npm run gulp --",
|
|
37
37
|
"gulp": "gulp --cwd ./ --gulpfile ./node_modules/browser-extension-manager/dist/gulp/main.js",
|
|
38
|
-
"build": "BXM_BUILD_MODE=true npm run gulp -- build"
|
|
38
|
+
"build": "npx bxm clean && npx bxm setup && BXM_BUILD_MODE=true npm run gulp -- build"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": "22"
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"npm-api": "^1.0.1",
|
|
82
82
|
"sass": "^1.94.0",
|
|
83
83
|
"through2": "^4.0.2",
|
|
84
|
-
"web-manager": "^4.0.
|
|
84
|
+
"web-manager": "^4.0.24",
|
|
85
85
|
"webpack": "^5.102.1",
|
|
86
86
|
"wonderful-fetch": "^1.3.4",
|
|
87
87
|
"wonderful-version": "^1.3.2",
|