browser-extension-manager 1.1.4 → 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/assets/themes/classy/_theme.js +10 -14
- package/dist/assets/themes/classy/js/_index.js +0 -0
- package/dist/config/manifest.json +7 -6
- package/dist/content.js +22 -28
- package/dist/gulp/tasks/audit.js +8 -4
- package/dist/gulp/tasks/package.js +1 -0
- package/dist/gulp/tasks/webpack.js +1 -0
- package/dist/options.js +6 -5
- package/dist/page.js +6 -5
- package/dist/popup.js +6 -5
- package/dist/sidepanel.js +6 -5
- package/firebase-debug.log +322 -0
- package/package.json +4 -3
- package/dist/assets/themes/classy/js/logo-scroll.js +0 -83
- package/dist/assets/themes/classy/js/navbar-scroll.js +0 -65
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
|
|
@@ -11,19 +11,15 @@ window.bootstrap = bootstrap;
|
|
|
11
11
|
}
|
|
12
12
|
/* @dev-only:end */
|
|
13
13
|
|
|
14
|
-
// Import navbar scroll functionality
|
|
15
|
-
import
|
|
16
|
-
// Import logo scroll functionality
|
|
17
|
-
import setupLogoScroll from './js/logo-scroll.js';
|
|
14
|
+
// // Import navbar scroll functionality
|
|
15
|
+
// import index from './js/_index.js';
|
|
18
16
|
|
|
19
|
-
// Initialize navbar scroll effect when DOM is ready
|
|
20
|
-
if (document.readyState === 'loading') {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
setupLogoScroll();
|
|
28
|
-
}
|
|
17
|
+
// // Initialize navbar scroll effect when DOM is ready
|
|
18
|
+
// if (document.readyState === 'loading') {
|
|
19
|
+
// document.addEventListener('DOMContentLoaded', () => {
|
|
20
|
+
// index();
|
|
21
|
+
// });
|
|
22
|
+
// } else {
|
|
23
|
+
// index();
|
|
24
|
+
// }
|
|
29
25
|
|
|
File without changes
|
|
@@ -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/content.js
CHANGED
|
@@ -1,37 +1,31 @@
|
|
|
1
1
|
// Libraries
|
|
2
|
+
import extension from './lib/extension.js';
|
|
3
|
+
import LoggerLite from './lib/logger-lite.js';
|
|
2
4
|
|
|
3
5
|
// Class
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
// Properties
|
|
8
|
-
self.extension = null;
|
|
9
|
-
self.messenger = null;
|
|
10
|
-
self.logger = null;
|
|
11
|
-
self.affiliatizer = null;
|
|
12
|
-
|
|
13
|
-
// Return
|
|
14
|
-
return self;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
// Initialize
|
|
18
|
-
Manager.prototype.initialize = function () {
|
|
19
|
-
const self = this;
|
|
20
|
-
|
|
21
|
-
return new Promise(function(resolve, reject) {
|
|
6
|
+
class Manager {
|
|
7
|
+
constructor() {
|
|
22
8
|
// Properties
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
9
|
+
this.extension = null;
|
|
10
|
+
this.messenger = null;
|
|
11
|
+
this.logger = null;
|
|
12
|
+
this.affiliatizer = null;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
async initialize() {
|
|
16
|
+
// Set properties
|
|
17
|
+
this.extension = extension;
|
|
18
|
+
this.messenger = null;
|
|
19
|
+
this.logger = new LoggerLite('content');
|
|
20
|
+
this.affiliatizer = (await import('./lib/affiliatizer.js')).default.initialize(this);
|
|
27
21
|
|
|
28
22
|
// Log
|
|
29
|
-
|
|
23
|
+
this.logger.log('Initialized!', this);
|
|
30
24
|
|
|
31
|
-
// Return
|
|
32
|
-
return
|
|
33
|
-
}
|
|
34
|
-
}
|
|
25
|
+
// Return manager instance
|
|
26
|
+
return this;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
35
29
|
|
|
36
30
|
// Export
|
|
37
|
-
|
|
31
|
+
export default Manager;
|
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
|
}
|
|
@@ -43,6 +43,7 @@ const watchInput = [
|
|
|
43
43
|
|
|
44
44
|
// Core JS - watch for changes but don't compile as entry points
|
|
45
45
|
`${rootPathPackage}/dist/assets/js/**/*.js`,
|
|
46
|
+
`${rootPathProject}/src/assets/js/**/*.js`,
|
|
46
47
|
|
|
47
48
|
// Theme js - watch for changes but don't compile as entry points
|
|
48
49
|
`${rootPathPackage}/dist/assets/themes/**/*.js`,
|
package/dist/options.js
CHANGED
|
@@ -3,6 +3,9 @@ import { Manager as WebManager } from 'web-manager';
|
|
|
3
3
|
import extension from './lib/extension.js';
|
|
4
4
|
import LoggerLite from './lib/logger-lite.js';
|
|
5
5
|
|
|
6
|
+
// Import theme (exposes Bootstrap to window.bootstrap)
|
|
7
|
+
import '__theme__/_theme.js';
|
|
8
|
+
|
|
6
9
|
// Class
|
|
7
10
|
class Manager {
|
|
8
11
|
constructor() {
|
|
@@ -26,14 +29,12 @@ class Manager {
|
|
|
26
29
|
// Initialize
|
|
27
30
|
await this.webManager.initialize(configuration);
|
|
28
31
|
|
|
32
|
+
// Log
|
|
33
|
+
this.logger.log('Initialized!', this);
|
|
34
|
+
|
|
29
35
|
// Return manager instance
|
|
30
36
|
return this;
|
|
31
37
|
}
|
|
32
|
-
|
|
33
|
-
library(name) {
|
|
34
|
-
// Dynamic import for libraries
|
|
35
|
-
return import(`./lib/${name}.js`);
|
|
36
|
-
}
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
// Export
|
package/dist/page.js
CHANGED
|
@@ -3,6 +3,9 @@ import { Manager as WebManager } from 'web-manager';
|
|
|
3
3
|
import extension from './lib/extension.js';
|
|
4
4
|
import LoggerLite from './lib/logger-lite.js';
|
|
5
5
|
|
|
6
|
+
// Import theme (exposes Bootstrap to window.bootstrap)
|
|
7
|
+
import '__theme__/_theme.js';
|
|
8
|
+
|
|
6
9
|
// Class
|
|
7
10
|
class Manager {
|
|
8
11
|
constructor() {
|
|
@@ -26,14 +29,12 @@ class Manager {
|
|
|
26
29
|
// Initialize
|
|
27
30
|
await this.webManager.initialize(configuration);
|
|
28
31
|
|
|
32
|
+
// Log
|
|
33
|
+
this.logger.log('Initialized!', this);
|
|
34
|
+
|
|
29
35
|
// Return manager instance
|
|
30
36
|
return this;
|
|
31
37
|
}
|
|
32
|
-
|
|
33
|
-
library(name) {
|
|
34
|
-
// Dynamic import for libraries
|
|
35
|
-
return import(`./lib/${name}.js`);
|
|
36
|
-
}
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
// Export
|
package/dist/popup.js
CHANGED
|
@@ -3,6 +3,9 @@ import { Manager as WebManager } from 'web-manager';
|
|
|
3
3
|
import extension from './lib/extension.js';
|
|
4
4
|
import LoggerLite from './lib/logger-lite.js';
|
|
5
5
|
|
|
6
|
+
// Import theme (exposes Bootstrap to window.bootstrap)
|
|
7
|
+
import '__theme__/_theme.js';
|
|
8
|
+
|
|
6
9
|
// Class
|
|
7
10
|
class Manager {
|
|
8
11
|
constructor() {
|
|
@@ -26,14 +29,12 @@ class Manager {
|
|
|
26
29
|
// Initialize
|
|
27
30
|
await this.webManager.initialize(configuration);
|
|
28
31
|
|
|
32
|
+
// Log
|
|
33
|
+
this.logger.log('Initialized!', this);
|
|
34
|
+
|
|
29
35
|
// Return manager instance
|
|
30
36
|
return this;
|
|
31
37
|
}
|
|
32
|
-
|
|
33
|
-
library(name) {
|
|
34
|
-
// Dynamic import for libraries
|
|
35
|
-
return import(`./lib/${name}.js`);
|
|
36
|
-
}
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
// Export
|
package/dist/sidepanel.js
CHANGED
|
@@ -3,6 +3,9 @@ import { Manager as WebManager } from 'web-manager';
|
|
|
3
3
|
import extension from './lib/extension.js';
|
|
4
4
|
import LoggerLite from './lib/logger-lite.js';
|
|
5
5
|
|
|
6
|
+
// Import theme (exposes Bootstrap to window.bootstrap)
|
|
7
|
+
import '__theme__/_theme.js';
|
|
8
|
+
|
|
6
9
|
// Class
|
|
7
10
|
class Manager {
|
|
8
11
|
constructor() {
|
|
@@ -26,14 +29,12 @@ class Manager {
|
|
|
26
29
|
// Initialize
|
|
27
30
|
await this.webManager.initialize(configuration);
|
|
28
31
|
|
|
32
|
+
// Log
|
|
33
|
+
this.logger.log('Initialized!', this);
|
|
34
|
+
|
|
29
35
|
// Return manager instance
|
|
30
36
|
return this;
|
|
31
37
|
}
|
|
32
|
-
|
|
33
|
-
library(name) {
|
|
34
|
-
// Dynamic import for libraries
|
|
35
|
-
return import(`./lib/${name}.js`);
|
|
36
|
-
}
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
// Export
|
package/firebase-debug.log
CHANGED
|
@@ -376,3 +376,325 @@
|
|
|
376
376
|
[debug] [2025-11-14T04:28:29.866Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
377
377
|
[debug] [2025-11-14T04:28:29.867Z] > 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"]
|
|
378
378
|
[debug] [2025-11-14T04:28:29.867Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
379
|
+
[debug] [2025-11-14T06:32:32.754Z] > 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"]
|
|
380
|
+
[debug] [2025-11-14T06:32:32.758Z] > 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"]
|
|
381
|
+
[debug] [2025-11-14T06:32:32.756Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
382
|
+
[debug] [2025-11-14T06:32:32.756Z] > 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"]
|
|
383
|
+
[debug] [2025-11-14T06:32:32.756Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
384
|
+
[debug] [2025-11-14T06:32:32.765Z] > 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"]
|
|
385
|
+
[debug] [2025-11-14T06:32:32.766Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
386
|
+
[debug] [2025-11-14T06:32:32.760Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
387
|
+
[debug] [2025-11-14T06:32:32.760Z] > 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"]
|
|
388
|
+
[debug] [2025-11-14T06:32:32.760Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
389
|
+
[debug] [2025-11-14T06:32:32.777Z] > 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"]
|
|
390
|
+
[debug] [2025-11-14T06:32:32.778Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
391
|
+
[debug] [2025-11-14T06:32:32.839Z] > 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"]
|
|
392
|
+
[debug] [2025-11-14T06:32:32.839Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
393
|
+
[debug] [2025-11-14T06:32:32.840Z] > 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"]
|
|
394
|
+
[debug] [2025-11-14T06:32:32.840Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
395
|
+
[debug] [2025-11-14T06:32:32.842Z] > 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"]
|
|
396
|
+
[debug] [2025-11-14T06:32:32.842Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
397
|
+
[debug] [2025-11-14T06:32:32.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"]
|
|
398
|
+
[debug] [2025-11-14T06:32:32.843Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
399
|
+
[debug] [2025-11-14T06:32:32.854Z] > 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"]
|
|
400
|
+
[debug] [2025-11-14T06:32:32.855Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
401
|
+
[debug] [2025-11-14T06:32:32.855Z] > 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"]
|
|
402
|
+
[debug] [2025-11-14T06:32:32.856Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
403
|
+
[debug] [2025-11-14T06:32:32.857Z] > 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"]
|
|
404
|
+
[debug] [2025-11-14T06:32:32.857Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
405
|
+
[debug] [2025-11-14T06:32:32.857Z] > 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"]
|
|
406
|
+
[debug] [2025-11-14T06:32:32.857Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
407
|
+
[debug] [2025-11-14T22:04:25.057Z] > 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"]
|
|
408
|
+
[debug] [2025-11-14T22:04:25.125Z] > 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"]
|
|
409
|
+
[debug] [2025-11-14T22:04:25.064Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
410
|
+
[debug] [2025-11-14T22:04:25.065Z] > 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"]
|
|
411
|
+
[debug] [2025-11-14T22:04:25.065Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
412
|
+
[debug] [2025-11-14T22:04:25.178Z] > 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"]
|
|
413
|
+
[debug] [2025-11-14T22:04:25.179Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
414
|
+
[debug] [2025-11-14T22:04:25.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"]
|
|
415
|
+
[debug] [2025-11-14T22:04:25.254Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
416
|
+
[debug] [2025-11-14T22:04:25.255Z] > 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"]
|
|
417
|
+
[debug] [2025-11-14T22:04:25.255Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
418
|
+
[debug] [2025-11-14T22:04:25.256Z] > 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"]
|
|
419
|
+
[debug] [2025-11-14T22:04:25.256Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
420
|
+
[debug] [2025-11-14T22:04:25.257Z] > 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"]
|
|
421
|
+
[debug] [2025-11-14T22:04:25.257Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
422
|
+
[debug] [2025-11-14T22:04:25.128Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
423
|
+
[debug] [2025-11-14T22:04:25.128Z] > 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"]
|
|
424
|
+
[debug] [2025-11-14T22:04:25.128Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
425
|
+
[debug] [2025-11-14T22:04:25.283Z] > 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"]
|
|
426
|
+
[debug] [2025-11-14T22:04:25.285Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
427
|
+
[debug] [2025-11-14T22:04:25.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"]
|
|
428
|
+
[debug] [2025-11-14T22:04:25.445Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
429
|
+
[debug] [2025-11-14T22:04:25.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"]
|
|
430
|
+
[debug] [2025-11-14T22:04:25.446Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
431
|
+
[debug] [2025-11-14T22:04:25.456Z] > 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"]
|
|
432
|
+
[debug] [2025-11-14T22:04:25.456Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
433
|
+
[debug] [2025-11-14T22:04:25.456Z] > 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"]
|
|
434
|
+
[debug] [2025-11-14T22:04:25.456Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
435
|
+
[debug] [2025-11-14T22:30:26.450Z] > 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"]
|
|
436
|
+
[debug] [2025-11-14T22:30:26.452Z] > 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"]
|
|
437
|
+
[debug] [2025-11-14T22:30:26.452Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
438
|
+
[debug] [2025-11-14T22:30:26.453Z] > 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"]
|
|
439
|
+
[debug] [2025-11-14T22:30:26.453Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
440
|
+
[debug] [2025-11-14T22:30:26.462Z] > 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"]
|
|
441
|
+
[debug] [2025-11-14T22:30:26.463Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
442
|
+
[debug] [2025-11-14T22:30:26.454Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
443
|
+
[debug] [2025-11-14T22:30:26.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"]
|
|
444
|
+
[debug] [2025-11-14T22:30:26.454Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
445
|
+
[debug] [2025-11-14T22:30:26.463Z] > 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"]
|
|
446
|
+
[debug] [2025-11-14T22:30:26.463Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
447
|
+
[debug] [2025-11-14T22:30:26.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"]
|
|
448
|
+
[debug] [2025-11-14T22:30:26.534Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
449
|
+
[debug] [2025-11-14T22:30:26.535Z] > 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"]
|
|
450
|
+
[debug] [2025-11-14T22:30:26.535Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
451
|
+
[debug] [2025-11-14T22:30:26.536Z] > 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"]
|
|
452
|
+
[debug] [2025-11-14T22:30:26.537Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
453
|
+
[debug] [2025-11-14T22:30:26.537Z] > 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"]
|
|
454
|
+
[debug] [2025-11-14T22:30:26.537Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
455
|
+
[debug] [2025-11-14T22:30:26.537Z] > 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"]
|
|
456
|
+
[debug] [2025-11-14T22:30:26.537Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
457
|
+
[debug] [2025-11-14T22:30:26.538Z] > 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"]
|
|
458
|
+
[debug] [2025-11-14T22:30:26.538Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
459
|
+
[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"]
|
|
460
|
+
[debug] [2025-11-14T22:30:26.540Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
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
|
+
[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"
|
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@babel/core": "^7.28.5",
|
|
65
65
|
"@babel/preset-env": "^7.28.5",
|
|
66
|
+
"@popperjs/core": "^2.11.8",
|
|
66
67
|
"babel-loader": "^10.0.0",
|
|
67
68
|
"chalk": "^4.1.2",
|
|
68
69
|
"fs-jetpack": "^5.1.0",
|
|
@@ -80,7 +81,7 @@
|
|
|
80
81
|
"npm-api": "^1.0.1",
|
|
81
82
|
"sass": "^1.94.0",
|
|
82
83
|
"through2": "^4.0.2",
|
|
83
|
-
"web-manager": "^4.0.
|
|
84
|
+
"web-manager": "^4.0.24",
|
|
84
85
|
"webpack": "^5.102.1",
|
|
85
86
|
"wonderful-fetch": "^1.3.4",
|
|
86
87
|
"wonderful-version": "^1.3.2",
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
// Setup speed
|
|
2
|
-
const SCROLL_SPEED_PX_PER_SECOND = 40; // Pixels per second
|
|
3
|
-
|
|
4
|
-
// Logo scroll animation setup
|
|
5
|
-
export default function setupLogoScroll() {
|
|
6
|
-
const scrollTracks = document.querySelectorAll('.logo-scroll-track');
|
|
7
|
-
|
|
8
|
-
scrollTracks.forEach(track => {
|
|
9
|
-
if (!track) {
|
|
10
|
-
return;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
// Get original logos
|
|
14
|
-
const originalLogos = Array.from(track.children);
|
|
15
|
-
if (originalLogos.length === 0) {
|
|
16
|
-
return;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
// Calculate total width of original logos
|
|
20
|
-
let totalWidth = 0;
|
|
21
|
-
originalLogos.forEach(logo => {
|
|
22
|
-
totalWidth += logo.getBoundingClientRect().width;
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
// Calculate how many sets we need to fill the screen plus extra for smooth scrolling
|
|
26
|
-
const viewportWidth = window.innerWidth;
|
|
27
|
-
const setsNeeded = Math.ceil((viewportWidth * 2.5) / totalWidth);
|
|
28
|
-
|
|
29
|
-
// Clone logo sets
|
|
30
|
-
for (let i = 0; i < setsNeeded; i++) {
|
|
31
|
-
originalLogos.forEach(logo => {
|
|
32
|
-
const clone = logo.cloneNode(true);
|
|
33
|
-
track.appendChild(clone);
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
// Calculate animation duration based on total width
|
|
38
|
-
// Slower speed for better visibility
|
|
39
|
-
const allLogos = track.children;
|
|
40
|
-
let animationWidth = 0;
|
|
41
|
-
|
|
42
|
-
// Calculate width of half the logos (for the 50% translation)
|
|
43
|
-
const halfCount = Math.floor(allLogos.length / 2);
|
|
44
|
-
for (let i = 0; i < halfCount; i++) {
|
|
45
|
-
animationWidth += allLogos[i].getBoundingClientRect().width;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
// Set CSS variables for animation
|
|
49
|
-
const duration = animationWidth / SCROLL_SPEED_PX_PER_SECOND;
|
|
50
|
-
track.style.setProperty('--logo-scroll-duration', `${duration}s`);
|
|
51
|
-
track.style.setProperty('--logo-scroll-distance', `-${animationWidth}px`);
|
|
52
|
-
|
|
53
|
-
// Restart animation when it completes to ensure seamless loop
|
|
54
|
-
track.addEventListener('animationiteration', () => {
|
|
55
|
-
// Reset the animation to prevent accumulation of drift
|
|
56
|
-
track.style.animation = 'none';
|
|
57
|
-
track.offsetHeight; // Trigger reflow
|
|
58
|
-
track.style.animation = `scroll-logos var(--logo-scroll-duration, ${duration}s) linear infinite`;
|
|
59
|
-
});
|
|
60
|
-
});
|
|
61
|
-
|
|
62
|
-
// Recalculate on window resize
|
|
63
|
-
let resizeTimeout;
|
|
64
|
-
window.addEventListener('resize', () => {
|
|
65
|
-
clearTimeout(resizeTimeout);
|
|
66
|
-
resizeTimeout = setTimeout(() => {
|
|
67
|
-
// Reset and recalculate
|
|
68
|
-
scrollTracks.forEach(track => {
|
|
69
|
-
// Remove cloned logos
|
|
70
|
-
const logos = Array.from(track.children);
|
|
71
|
-
const originalCount = logos.length / (Math.ceil(logos.length / 8)); // Estimate original count
|
|
72
|
-
|
|
73
|
-
// Keep only estimated original logos
|
|
74
|
-
while (track.children.length > 8) { // Assuming max 8 original logos
|
|
75
|
-
track.removeChild(track.lastChild);
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
|
|
79
|
-
// Re-run setup
|
|
80
|
-
setupLogoScroll();
|
|
81
|
-
}, 250);
|
|
82
|
-
});
|
|
83
|
-
}
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
// Navbar scroll effect for Classy theme
|
|
2
|
-
export default function setupNavbarScroll() {
|
|
3
|
-
const navbar = document.querySelector('.navbar-floating');
|
|
4
|
-
if (!navbar) return;
|
|
5
|
-
|
|
6
|
-
let scrollThreshold = 50; // Pixels to scroll before showing background
|
|
7
|
-
let isGlassy = false;
|
|
8
|
-
let currentOpacity = 0;
|
|
9
|
-
let targetOpacity = 0;
|
|
10
|
-
let animationFrame = null;
|
|
11
|
-
|
|
12
|
-
// Set initial custom property for ::before opacity
|
|
13
|
-
navbar.style.setProperty('--navbar-before-opacity', '0');
|
|
14
|
-
|
|
15
|
-
function animateOpacity() {
|
|
16
|
-
const diff = targetOpacity - currentOpacity;
|
|
17
|
-
|
|
18
|
-
if (Math.abs(diff) > 0.01) {
|
|
19
|
-
currentOpacity += diff * 0.1;
|
|
20
|
-
navbar.style.setProperty('--navbar-before-opacity', currentOpacity);
|
|
21
|
-
animationFrame = requestAnimationFrame(animateOpacity);
|
|
22
|
-
} else {
|
|
23
|
-
currentOpacity = targetOpacity;
|
|
24
|
-
navbar.style.setProperty('--navbar-before-opacity', currentOpacity);
|
|
25
|
-
animationFrame = null;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
function updateNavbar() {
|
|
30
|
-
const shouldBeGlassy = window.scrollY > scrollThreshold;
|
|
31
|
-
|
|
32
|
-
if (shouldBeGlassy !== isGlassy) {
|
|
33
|
-
isGlassy = shouldBeGlassy;
|
|
34
|
-
|
|
35
|
-
if (isGlassy) {
|
|
36
|
-
navbar.classList.add('bg-glassy', 'shadow-sm');
|
|
37
|
-
targetOpacity = 0.25;
|
|
38
|
-
} else {
|
|
39
|
-
navbar.classList.remove('bg-glassy', 'shadow-sm');
|
|
40
|
-
targetOpacity = 0;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
if (!animationFrame) {
|
|
44
|
-
animateOpacity();
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// Initial check
|
|
50
|
-
updateNavbar();
|
|
51
|
-
|
|
52
|
-
// Listen for scroll events with requestAnimationFrame
|
|
53
|
-
let ticking = false;
|
|
54
|
-
function requestTick() {
|
|
55
|
-
if (!ticking) {
|
|
56
|
-
ticking = true;
|
|
57
|
-
window.requestAnimationFrame(() => {
|
|
58
|
-
updateNavbar();
|
|
59
|
-
ticking = false;
|
|
60
|
-
});
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
window.addEventListener('scroll', requestTick, { passive: true });
|
|
65
|
-
}
|