Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
Latest commit
608 lines (553 loc) · 20.6 KB
/
Copy pathpopup.html
File metadata and controls
608 lines (553 loc) · 20.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
<!DOCTYPE html>
<html>
<head>
<metacharset="utf-8" />
<title>Dev Stack</title>
<metaname="viewport" content="width=device-width, initial-scale=1" />
<linkrel="stylesheet" href="style.css" />
</head>
<body>
<h1>Dev Stack</h1>
<!-- Tab Navigation -->
<divclass="tab-nav">
<buttonclass="tab-button active" data-tab="url-swapper">
URL Swapper
</button>
<buttonclass="tab-button" data-tab="cache-buster">Cache Buster</button>
<buttonclass="tab-button" data-tab="debug-helpers">Debug Helpers</button>
<buttonclass="tab-button" data-tab="admin-shortcuts">
Admin Shortcuts
</button>
<buttonclass="tab-button" data-tab="log-viewer">Log Viewer</button>
</div>
<!-- URL Swapper Tab -->
<divid="url-swapper-tab" class="tab-content active">
<!-- Enabled toggle -->
<divclass="toggle-wrap">
<span>Enabled</span>
<labelclass="toggle">
<inputid="urlSwapperEnabled" type="checkbox" />
<spanclass="slider"></span>
</label>
</div>
<divid="urlSwapperSettings" class="hidden">
<!-- URLs -->
<divclass="input-wrap">
<labelfor="source">Source URL (match)</label>
<input
id="source"
type="text"
placeholder="e.g. http://localhost:3000"
/>
</div>
<divclass="input-wrap">
<labelfor="dest">Destination URL (replace)</label>
<inputid="dest" type="text" placeholder="e.g. https://example.com" />
</div>
<!-- Origin-only toggle -->
<divclass="toggle-wrap">
<span>Match by origin only (scheme + host)</span>
<labelclass="toggle">
<inputid="originOnly" type="checkbox" />
<spanclass="slider"></span>
</label>
</div>
<!-- Swap types -->
<fieldset>
<legend>Swap these types</legend>
<divclass="toggle-wrap">
<span
>Images
<code>img/src, srcset, data-*</code>
</span>
<labelclass="toggle">
<inputtype="checkbox" id="swapImages" />
<spanclass="slider"></span>
</label>
</div>
<divclass="toggle-wrap">
<span
>CSS files
<code>link[rel=stylesheet]</code>
</span>
<labelclass="toggle">
<inputtype="checkbox" id="swapCSS" />
<spanclass="slider"></span>
</label>
</div>
<divclass="toggle-wrap">
<span>JS files <code>script[src]</code></span>
<labelclass="toggle">
<inputtype="checkbox" id="swapJS" />
<spanclass="slider"></span>
</label>
</div>
<divclass="toggle-wrap">
<span>Video / Audio <code>video, audio, poster, source</code></span>
<labelclass="toggle">
<inputtype="checkbox" id="swapMedia" />
<spanclass="slider"></span>
</label>
</div>
<divclass="toggle-wrap">
<span>Iframes <code>iframe[src]</code></span>
<labelclass="toggle">
<inputtype="checkbox" id="swapIframes" />
<spanclass="slider"></span>
</label>
</div>
<divclass="toggle-wrap">
<span>Inline CSS <code><style> & style=""</code></span>
<labelclass="toggle">
<inputtype="checkbox" id="swapInlineCSS" />
<spanclass="slider"></span>
</label>
</div>
</fieldset>
<!-- Menu links -->
<fieldset>
<legend>Optional: Menu links</legend>
<input
id="menuSelectors"
type="text"
placeholder="e.g. nav a, .menu a, header .navbar a"
/>
<divclass="hint">
Swap only anchors that match these selectors (comma-separated).
Leave empty to disable.
</div>
</fieldset>
<divclass="hint tip">
Tip: Most use Images, CSS, JS. Keep menu selectors empty unless you
specifically want menu links swapped.
</div>
</div>
</div>
<!-- Cache Buster Tab -->
<divid="cache-buster-tab" class="tab-content">
<!-- Enabled toggle -->
<divclass="toggle-wrap">
<span>Enabled</span>
<labelclass="toggle">
<inputid="cacheBusterEnabled" type="checkbox" />
<spanclass="slider"></span>
</label>
</div>
<divid="cacheBusterSettings" class="hidden">
<!-- Cache busting options -->
<fieldset>
<legend>Cache Busting Options</legend>
<divclass="toggle-wrap">
<span>Add ?ver=timestamp to CSS files</span>
<labelclass="toggle">
<inputtype="checkbox" id="addTimestampCSS" />
<spanclass="slider"></span>
</label>
</div>
<!-- CSS File Filter -->
<divid="cssFileFilter" class="hidden">
<divclass="hint">
CSS file names or patterns (one per line). Leave empty for all CSS
files.
</div>
<textarea
id="cssFileNames"
placeholder="style.css main*.css components/*.css"
rows="2"
></textarea>
</div>
<divclass="toggle-wrap">
<span>Add ?ver=timestamp to JS files</span>
<labelclass="toggle">
<inputtype="checkbox" id="addTimestampJS" />
<spanclass="slider"></span>
</label>
</div>
<!-- JS File Filter -->
<divid="jsFileFilter" class="hidden">
<divclass="hint">
JS file names or patterns (one per line). Leave empty for all JS
files.
</div>
<textarea
id="jsFileNames"
placeholder="script.js app*.js utils/*.js"
rows="2"
></textarea>
</div>
<divclass="toggle-wrap">
<span>Disable browser cache for selected domains</span>
<labelclass="toggle">
<inputtype="checkbox" id="disableCache" />
<spanclass="slider"></span>
</label>
</div>
</fieldset>
<!-- Domain selection -->
<fieldset>
<legend>Target Domains</legend>
<textarea
id="targetDomains"
placeholder="example.com localhost:3000 staging.example.com"
rows="4"
></textarea>
<divclass="hint">
Enter domains to apply cache busting (one per line). Leave empty to
apply to all domains.
</div>
</fieldset>
<divclass="hint tip">
Cache busting adds timestamp parameters to force reload of CSS/JS
files without server changes.
</div>
</div>
</div>
<!-- Debug Helpers Tab -->
<divid="debug-helpers-tab" class="tab-content">
<!-- Enabled toggle -->
<divclass="toggle-wrap">
<span>Enabled</span>
<labelclass="toggle">
<inputid="debugHelpersEnabled" type="checkbox" />
<spanclass="slider"></span>
</label>
</div>
<divid="debugHelpersSettings" class="hidden">
<!-- Debug panel options -->
<fieldset>
<legend>Debug Panel Options</legend>
<divclass="toggle-wrap">
<span>Auto-highlight debug parameters</span>
<labelclass="toggle">
<inputtype="checkbox" id="autoHighlight" />
<spanclass="slider"></span>
</label>
</div>
<divclass="toggle-wrap">
<span>Show REST API button (WordPress)</span>
<labelclass="toggle">
<inputtype="checkbox" id="showRESTButton" />
<spanclass="slider"></span>
</label>
</div>
<divclass="form-group">
<labelfor="debugPanelPosition">Panel Position</label>
<selectid="debugPanelPosition">
<optionvalue="top-right">Top Right</option>
<optionvalue="top-left">Top Left</option>
<optionvalue="bottom-right">Bottom Right</option>
<optionvalue="bottom-left">Bottom Left</option>
</select>
<divclass="hint">
Choose where the debug panel trigger button appears
</div>
</div>
</fieldset>
<!-- Highlight parameters -->
<fieldset>
<legend>Parameters to Highlight</legend>
<textarea
id="highlightParams"
placeholder="elementor-preview fl_builder et_fb vc_editable gutenberg nocache debug preview"
rows="6"
></textarea>
<divclass="hint">
Enter parameter names to highlight when detected in URL (one per
line).<br/>
These will be visually highlighted in the debug panel with green
background.
</div>
</fieldset>
<!-- Custom parameters -->
<fieldset>
<legend>Custom Quick Actions</legend>
<textarea
id="customParams"
placeholder="elementor-preview=1 fl_builder et_fb=1 vc_editable=true gutenberg preview=1"
rows="4"
></textarea>
<divclass="hint">
Add custom parameters for quick access (one per line, format:
key=value).<br/>
<strong>WordPress Builder Examples:</strong><br/>
• elementor-preview=1 (Elementor)<br/>
• fl_builder (Beaver Builder)<br/>
• et_fb=1 (Divi)<br/>
• vc_editable=true (WPBakery)<br/>
• gutenberg (Gutenberg editor)
</div>
</fieldset>
<!-- Domain filtering -->
<fieldset>
<legend>Show on Specific Domains</legend>
<textarea
id="debugHelpersDomains"
placeholder="example.com localhost:3000 staging.example.com *.mydomain.com"
rows="4"
></textarea>
<divclass="hint">
Enter domains where debug helpers should appear (one per line).<br/>
Supports wildcards: <code>*.example.com</code> matches all
subdomains<br/>
Leave empty to show on all domains
</div>
</fieldset>
<!-- Keyboard shortcuts -->
<fieldset>
<legend>Keyboard Shortcuts</legend>
<divclass="hint">
<strong>Ctrl+Shift+D</strong> - Toggle debug panel on current
page<br/>
<strong>🔧 Button</strong> - Click the floating button in
<spanid="debugHelpersPositionText">top-right</span>
corner
</div>
</fieldset>
<divclass="hint tip">
<strong>How to use:</strong><br/>
• Look for the 🔧 button in the
<spanid="debugHelpersPositionText2">top-right</span> corner of any
webpage<br/>
• Click it or press <strong>Ctrl+Shift+D</strong> to open the debug
panel<br/>
• Use quick action buttons to add debug parameters to URLs<br/>
• WordPress sites will show REST API and Admin buttons<br/>
• Debug panel auto-detects and highlights debug parameters
</div>
</div>
</div>
<!-- Admin Shortcuts Tab -->
<divid="admin-shortcuts-tab" class="tab-content">
<!-- Enabled toggle -->
<divclass="toggle-wrap">
<span>Enabled</span>
<labelclass="toggle">
<inputid="adminShortcutsEnabled" type="checkbox" />
<spanclass="slider"></span>
</label>
</div>
<divid="adminShortcutsSettings" class="hidden">
<!-- Admin shortcuts configuration -->
<fieldset>
<legend>Admin Shortcuts</legend>
<divclass="form-group">
<labelfor="adminPanelPosition">Panel Position</label>
<selectid="adminPanelPosition">
<optionvalue="top-left">Top Left</option>
<optionvalue="top-right">Top Right</option>
<optionvalue="bottom-left">Bottom Left</option>
<optionvalue="bottom-right">Bottom Right</option>
</select>
<divclass="hint">
Choose where the admin shortcuts trigger button appears
</div>
</div>
<!-- Visual Builder -->
<divid="adminShortcutsBuilder" class="shortcuts-builder">
<divclass="builder-header">
<h4>Add New Shortcut</h4>
<buttontype="button" id="addShortcutBtn" class="add-btn">
+ Add Shortcut
</button>
</div>
<divid="shortcutsList" class="shortcuts-list">
<!-- Shortcuts will be dynamically added here -->
</div>
</div>
<!-- Raw textarea (hidden by default) -->
<divclass="raw-editor-toggle">
<buttontype="button" id="toggleRawEditor" class="toggle-raw-btn">
Show Raw Editor
</button>
</div>
<textarea
id="adminShortcutsList"
class="hidden"
placeholder="Dashboard|/wp-admin/|🏠 Pages|/wp-admin/edit.php?post_type=page|📄 Posts|/wp-admin/edit.php|📝 Plugins|/wp-admin/plugins.php|🔌 Themes|/wp-admin/themes.php|🎨 Users|/wp-admin/users.php|👥 Settings|/wp-admin/options-general.php|⚙️ Debug Log|/wp-admin/tools.php?page=debug-log|🐛"
rows="8"
></textarea>
<divclass="hint">
<strong>Visual Builder:</strong> Add shortcuts using the form
above<br/>
<strong>Raw Editor:</strong> Click "Show Raw Editor" for manual
editing (format: Name|URL|Icon)<br/>
<strong>Icons:</strong> Use emoji or leave empty for default icon
</div>
</fieldset>
<!-- Domain filtering -->
<fieldset>
<legend>Show on Specific Domains</legend>
<textarea
id="adminShortcutsDomains"
placeholder="example.com localhost:3000 staging.example.com *.mydomain.com"
rows="4"
></textarea>
<divclass="hint">
Enter domains where admin shortcuts should appear (one per line).<br/>
Supports wildcards: <code>*.example.com</code> matches all
subdomains<br/>
Leave empty to show on all WordPress domains
</div>
</fieldset>
<!-- Keyboard shortcuts -->
<fieldset>
<legend>Keyboard Shortcuts</legend>
<divclass="hint">
<strong>Ctrl+Shift+A</strong> - Toggle admin shortcuts panel<br/>
<strong>⚡ Button</strong> - Click the floating button in
<spanid="adminShortcutsPositionText">top-left</span>
corner
</div>
</fieldset>
<divclass="hint tip">
<strong>WordPress Only:</strong> Admin shortcuts only appear on
WordPress sites.<br/>
• Look for the ⚡ button in the
<spanid="adminShortcutsPositionText2">top-left</span> corner of
WordPress pages<br/>
• Click it or press <strong>Ctrl+Shift+A</strong> to open the admin
panel<br/>
• Quick access to common WordPress admin pages
</div>
</div>
</div>
<!-- Log Viewer Tab -->
<divid="log-viewer-tab" class="tab-content">
<!-- Enabled toggle -->
<divclass="toggle-wrap">
<span>Enabled</span>
<labelclass="toggle">
<inputid="logViewerEnabled" type="checkbox" />
<spanclass="slider"></span>
</label>
</div>
<divid="logViewerSettings" class="hidden">
<!-- Panel position -->
<fieldset>
<legend>Panel Position</legend>
<divclass="form-group">
<labelfor="logViewerPanelPosition">Panel Position</label>
<selectid="logViewerPanelPosition">
<optionvalue="top-right">Top Right</option>
<optionvalue="top-left">Top Left</option>
<optionvalue="bottom-right">Bottom Right</option>
<optionvalue="bottom-left">Bottom Left</option>
</select>
<divclass="hint">
Choose where the log viewer trigger button appears
</div>
</div>
</fieldset>
<!-- Log file configuration -->
<fieldset>
<legend>Log File Configuration</legend>
<divclass="form-group">
<labelfor="logFilePath">Log File Path</label>
<input
id="logFilePath"
type="text"
placeholder="/wp-content/debug.log"
value="/wp-content/debug.log"
/>
<divclass="hint">
Enter the path to your WordPress debug log file. Default is
<code>/wp-content/debug.log</code>
</div>
</div>
<divclass="toggle-wrap">
<span>Auto-refresh log content</span>
<labelclass="toggle">
<inputtype="checkbox" id="autoRefresh" />
<spanclass="slider"></span>
</label>
</div>
<divid="refreshInterval" class="hidden">
<divclass="form-group">
<labelfor="refreshIntervalValue"
>Refresh Interval (seconds)</label
>
<input
id="refreshIntervalValue"
type="number"
min="5"
max="300"
value="10"
/>
<divclass="hint">
How often to refresh the log content (5-300 seconds)
</div>
</div>
</div>
</fieldset>
<!-- Display options -->
<fieldset>
<legend>Display Options</legend>
<divclass="toggle-wrap">
<span>Highlight errors and warnings</span>
<labelclass="toggle">
<inputtype="checkbox" id="highlightErrors" checked/>
<spanclass="slider"></span>
</label>
</div>
<divclass="toggle-wrap">
<span>Show timestamps</span>
<labelclass="toggle">
<inputtype="checkbox" id="showTimestamps" checked/>
<spanclass="slider"></span>
</label>
</div>
<divclass="form-group">
<labelfor="maxLogLines">Maximum lines to display</label>
<input
id="maxLogLines"
type="number"
min="50"
max="1000"
value="200"
/>
<divclass="hint">
Maximum number of log lines to display (50-1000)
</div>
</div>
</fieldset>
<!-- Domain filtering -->
<fieldset>
<legend>Show on Specific Domains</legend>
<textarea
id="logViewerDomains"
placeholder="example.com localhost:3000 staging.example.com *.mydomain.com"
rows="4"
></textarea>
<divclass="hint">
Enter domains where log viewer should appear (one per line).<br/>
Supports wildcards: <code>*.example.com</code> matches all
subdomains<br/>
Leave empty to show on all WordPress domains
</div>
</fieldset>
<!-- Keyboard shortcuts -->
<fieldset>
<legend>Keyboard Shortcuts</legend>
<divclass="hint">
<strong>Ctrl+Shift+L</strong> - Toggle log viewer panel<br/>
<strong>📋 Button</strong> - Click the floating button in
<spanid="logViewerPositionText">top-right</span> corner
</div>
</fieldset>
<divclass="hint tip">
<strong>WordPress Only:</strong> Log viewer only appears on WordPress
sites.<br/>
• Look for the 📋 button in the
<spanid="logViewerPositionText2">top-right</span> corner of WordPress
pages<br/>
• Click it or press <strong>Ctrl+Shift+L</strong> to open the log
viewer<br/>
• View real-time WordPress debug logs with error highlighting
</div>
</div>
</div>
<buttonid="save">Save</button>
<divid="status" class="small"></div>
<scriptsrc="popup.js"></script>
</body>
</html>