WebPerf: Media Performance
JavaScript snippets for measuring web performance in Chrome DevTools. Execute with mcp__chrome-devtools__evaluate_script, capture output with mcp__chrome-devtools__get_console_message.
Scripts
scripts/Image-Element-Audit.js — Image Element Audit
scripts/SVG-Embedded-Bitmap-Analysis.js — SVG Embedded Bitmap Analysis
scripts/Video-Element-Audit.js — Video Element Audit
Descriptions and thresholds: references/snippets.md
Common Workflows
Complete Media Audit
When the user asks for media optimization or "audit images and videos":
- Image-Element-Audit.js - Analyze all images (format, lazy loading, sizing, fetchpriority)
- Video-Element-Audit.js - Analyze all videos (poster, preload, formats, autoplay)
- SVG-Embedded-Bitmap-Analysis.js - Detect inefficient bitmap images embedded in SVGs
Image Optimization Workflow
When the user asks "optimize images" or "check image performance":
- Image-Element-Audit.js - Full image audit
- Cross-reference with webperf-loading skill:
- Find-Above-The-Fold-Lazy-Loaded-Images.js (incorrectly lazy-loaded images)
- Find-non-Lazy-Loaded-Images-outside-of-the-viewport.js (missing lazy loading)
- Find-Images-With-Lazy-and-Fetchpriority.js (contradictory attributes)
- Priority-Hints-Audit.js (LCP image should have fetchpriority="high")
Video Performance Audit
When the user asks "optimize videos" or "check video performance":
- Video-Element-Audit.js - Full video audit
- Cross-reference with webperf-core-web-vitals skill:
- LCP-Video-Candidate.js (check if video/poster is LCP)
- Cross-reference with webperf-loading skill:
- Priority-Hints-Audit.js (video poster priority)
- Resource-Hints-Validation.js (video preload)
LCP Image Investigation
When LCP is an image and needs optimization:
- Cross-reference with webperf-core-web-vitals skill:
- LCP.js (measure LCP)
- LCP-Image-Entropy.js (analyze image complexity)
- Image-Element-Audit.js - Check format, dimensions, lazy loading
- Cross-reference with webperf-loading skill:
- Find-Above-The-Fold-Lazy-Loaded-Images.js (should NOT be lazy)
- Priority-Hints-Audit.js (should have fetchpriority="high")
- Resource-Hints-Validation.js (consider preload)
Layout Shift from Images
When CLS is caused by images without dimensions:
- Image-Element-Audit.js - Check for missing width/height attributes
- Cross-reference with webperf-core-web-vitals skill:
- CLS.js (measure total CLS)
- Cross-reference with webperf-interaction skill:
- Layout-Shift-Loading-and-Interaction.js (when shifts occur)
SVG Optimization Audit
When the user asks about SVG performance or file sizes are large:
- SVG-Embedded-Bitmap-Analysis.js - Detect raster images embedded in vector SVGs
- Recommend SVGO optimization for SVGs without embedded bitmaps
- Recommend extracting bitmaps to separate image files with proper formats
Decision Tree
Use this decision tree to automatically run follow-up snippets based on results:
After Image-Element-Audit.js
If images missing width/height attributes → Layout shift risk, run:
- webperf-core-web-vitals:CLS.js (measure CLS impact)
- webperf-interaction:Layout-Shift-Loading-and-Interaction.js (timing of shifts)
- Recommend adding explicit dimensions to all images
If images using wrong format (JPEG for graphics, PNG for photos) → Recommend:
- Modern formats: WebP, AVIF
- Appropriate format for content type
- Format-specific compression settings
If images much larger than display size → Recommend:
- Responsive images with srcset
- Appropriate image CDN sizing
- srcset with multiple sizes for different viewports
If above-the-fold images are lazy-loaded → Run:
- webperf-loading:Find-Above-The-Fold-Lazy-Loaded-Images.js (confirm)
- webperf-core-web-vitals:LCP.js (measure LCP impact)
- Recommend removing loading="lazy" from above-fold images
If LCP image lacks fetchpriority="high" → Run:
- webperf-core-web-vitals:LCP.js (measure current LCP)
- webperf-loading:Priority-Hints-Audit.js (full priority audit)
- Recommend adding fetchpriority="high" to LCP image
If below-the-fold images are NOT lazy-loaded → Run:
- webperf-loading:Find-non-Lazy-Loaded-Images-outside-of-the-viewport.js (confirm)
- Recommend adding loading="lazy" to offscreen images
If images have both loading="lazy" AND fetchpriority="high" → Run:
- webperf-loading:Find-Images-With-Lazy-and-Fetchpriority.js (confirm contradiction)
- Recommend removing one of the conflicting attributes
If images missing alt text → Accessibility issue, recommend adding descriptive alt text
After Video-Element-Audit.js
If video is LCP candidate → Run:
- webperf-core-web-vitals:LCP-Video-Candidate.js (confirm)
- webperf-core-web-vitals:LCP.js (measure LCP)
- webperf-core-web-vitals:LCP-Sub-Parts.js (break down timing)
- Optimize video poster image or consider image alternative
If video missing poster → Recommend:
- Adding poster image for better perceived performance
- Using first frame or custom thumbnail
- Optimizing poster as you would an image
If video uses preload="auto" → Bandwidth concern, evaluate:
- Is video above-the-fold? Keep preload="auto"
- Is video below-the-fold? Change to preload="metadata" or "none"
- Is autoplay intended? Verify preload matches intent
If autoplay video without muted → Browser will block, recommend:
- Adding muted attribute
- Or removing autoplay
If video missing multiple formats → Recommend:
- WebM for Chrome/Firefox
- MP4 as fallback for Safari
- Order sources by efficiency (WebM first)
If large video files (>5MB) → Recommend:
- Compression/transcoding
- Adaptive bitrate streaming (HLS, DASH)
- Loading strategy optimization
After SVG-Embedded-Bitmap-Analysis.js
If bitmap images found in SVGs → Recommend:
- Extract bitmaps to separate files
- Use WebP/AVIF format for extracted images
- Reference images from SVG with element
- Or convert to pure vector if possible
If large embedded bitmaps (>100KB) → Critical inefficiency:
- SVG parsing overhead + large bitmap = worst of both worlds
- Urgently recommend extraction
If multiple small bitmaps in SVG → Consider:
- CSS sprites for small icons
- SVG symbols for reusable graphics
- Extracting to individual optimized images
Cross-Skill Triggers
These triggers recommend using snippets from other skills:
From Media to Core Web Vitals Skill
If LCP image detected → Use webperf-core-web-vitals skill:
- LCP.js (measure LCP)
- LCP-Sub-Parts.js (break down timing phases)
- LCP-Image-Entropy.js (analyze image complexity)
If video is LCP candidate → Use webperf-core-web-vitals skill:
- LCP-Video-Candidate.js (confirm and analyze)
- LCP.js (measure impact)
If images causing layout shifts → Use webperf-core-web-vitals skill:
- CLS.js (measure cumulative shift)
From Media to Loading Skill
If lazy loading issues detected → Use webperf-loading skill:
- Find-Above-The-Fold-Lazy-Loaded-Images.js (incorrectly lazy)
- Find-non-Lazy-Loaded-Images-outside-of-the-viewport.js (missing lazy)
- Find-Images-With-Lazy-and-Fetchpriority.js (contradictory attributes)
If LCP image needs priority optimization → Use webperf-loading skill:
- Priority-Hints-Audit.js (fetchpriority analysis)
- Resource-Hints-Validation.js (preload validation)
If images competing with critical resources → Use webperf-loading skill:
- Find-render-blocking-resources.js (resource priority conflicts)
- TTFB-Resources.js (identify slow image CDN)
From Media to Interaction Skill
- If images causing layout shifts during interaction → Use webperf-interaction skill:
- Layout-Shift-Loading-and-Interaction.js (shift timing analysis)
Performance Budget Thresholds
Use these thresholds to trigger recommendations:
Image File Sizes:
- Warning: Individual image > 500KB → Check format and compression
- Critical: Individual image > 1MB → Urgent optimization needed
- Total images: > 5MB on initial load → Implement lazy loading
Image Formats:
- JPEG for graphics/icons → Recommend PNG or SVG
- PNG for photos → Recommend JPEG, WebP, or AVIF
- GIF for animations → Recommend video (MP4/WebM) or animated WebP
- No modern formats (WebP/AVIF) → Recommend upgrading
Image Dimensions:
- Intrinsic size > 2x display size → Recommend responsive images
- Intrinsic size < display size → Upscaling = blurry, provide larger source
Video File Sizes:
- Warning: Video > 10MB → Consider compression or streaming
- Critical: Video > 50MB → Urgent optimization or streaming needed
Lazy Loading:
- Above-fold images lazy-loaded → Critical LCP impact, fix immediately
- Below-fold images NOT lazy-loaded → Wasted bandwidth, implement lazy loading
- >10 images eager-loaded → Excessive, implement lazy loading
Priority Hints:
- LCP image without fetchpriority="high" → Add for 10-30% LCP improvement
- Non-LCP images with fetchpriority="high" → Remove, wasting browser hints
- Lazy + fetchpriority="high" conflict → Fix contradiction
Common Issues and Resolutions
Issue: LCP is slow and LCP element is an image
- Run Image-Element-Audit.js
- Run webperf-core-web-vitals:LCP-Image-Entropy.js
- Check: format, lazy loading, fetchpriority, preload
- Fix in order: remove lazy, add fetchpriority="high", optimize format, add preload
Issue: CLS from images
- Run Image-Element-Audit.js
- Check for missing width/height
- Add explicit dimensions or aspect-ratio CSS
- Verify with webperf-core-web-vitals:CLS.js
Issue: Page loads too many images
- Run Image-Element-Audit.js
- Run webperf-loading:Find-non-Lazy-Loaded-Images-outside-of-the-viewport.js
- Implement lazy loading on below-fold images
- Consider pagination or infinite scroll
Issue: Images are the wrong format
- Run Image-Element-Audit.js
- Check format vs content type
- Recommend WebP with JPEG/PNG fallback
- Consider AVIF for even better compression
Issue: Video is LCP
- Run Video-Element-Audit.js
- Run webperf-core-web-vitals:LCP-Video-Candidate.js
- Optimize poster image or consider static image alternative
- Add fetchpriority="high" to poster if keeping video
Issue: SVG files are huge
- Run SVG-Embedded-Bitmap-Analysis.js
- Extract embedded bitmaps
- Run SVGO on pure SVG
- Re-measure file sizes
References
references/snippets.md — Descriptions and thresholds for each script
references/schema.md — Return value schema for interpreting script output
Execute via mcp__chrome-devtools__evaluate_script → read with mcp__chrome-devtools__get_console_message.
1---2name: webperf-media3description: Intelligent media optimization with automated workflows for images, videos, and SVGs. Includes decision trees that detect LCP images (triggers format/lazy-loading/priority analysis), identify layout shift risks (missing dimensions), and flag lazy loading issues (above-fold lazy or below-fold eager). Features workflows for complete media audit, LCP image investigation, video performance (poster optimization), and SVG embedded bitmap detection. Cross-skill integration with Core Web Vitals (LCP/CLS impact) and Loading (priority hints, resource preloading). Provides performance budgets and format recommendations based on content type. Use when the user asks about image optimization, LCP is an image/video, layout shifts from media, or media loading strategy. Compatible with Chrome DevTools MCP.4---56# WebPerf: Media Performance78JavaScript snippets for measuring web performance in Chrome DevTools. Execute with `mcp__chrome-devtools__evaluate_script`, capture output with `mcp__chrome-devtools__get_console_message`.910## Scripts1112- `scripts/Image-Element-Audit.js` — Image Element Audit13- `scripts/SVG-Embedded-Bitmap-Analysis.js` — SVG Embedded Bitmap Analysis14- `scripts/Video-Element-Audit.js` — Video Element Audit1516Descriptions and thresholds: `references/snippets.md`1718## Common Workflows1920### Complete Media Audit2122When the user asks for media optimization or "audit images and videos":23241. **Image-Element-Audit.js** - Analyze all images (format, lazy loading, sizing, fetchpriority)252. **Video-Element-Audit.js** - Analyze all videos (poster, preload, formats, autoplay)263. **SVG-Embedded-Bitmap-Analysis.js** - Detect inefficient bitmap images embedded in SVGs2728### Image Optimization Workflow2930When the user asks "optimize images" or "check image performance":31321. **Image-Element-Audit.js** - Full image audit332. Cross-reference with **webperf-loading** skill:34 - Find-Above-The-Fold-Lazy-Loaded-Images.js (incorrectly lazy-loaded images)35 - Find-non-Lazy-Loaded-Images-outside-of-the-viewport.js (missing lazy loading)36 - Find-Images-With-Lazy-and-Fetchpriority.js (contradictory attributes)37 - Priority-Hints-Audit.js (LCP image should have fetchpriority="high")3839### Video Performance Audit4041When the user asks "optimize videos" or "check video performance":42431. **Video-Element-Audit.js** - Full video audit442. Cross-reference with **webperf-core-web-vitals** skill:45 - LCP-Video-Candidate.js (check if video/poster is LCP)463. Cross-reference with **webperf-loading** skill:47 - Priority-Hints-Audit.js (video poster priority)48 - Resource-Hints-Validation.js (video preload)4950### LCP Image Investigation5152When LCP is an image and needs optimization:53541. Cross-reference with **webperf-core-web-vitals** skill:55 - LCP.js (measure LCP)56 - LCP-Image-Entropy.js (analyze image complexity)572. **Image-Element-Audit.js** - Check format, dimensions, lazy loading583. Cross-reference with **webperf-loading** skill:59 - Find-Above-The-Fold-Lazy-Loaded-Images.js (should NOT be lazy)60 - Priority-Hints-Audit.js (should have fetchpriority="high")61 - Resource-Hints-Validation.js (consider preload)6263### Layout Shift from Images6465When CLS is caused by images without dimensions:66671. **Image-Element-Audit.js** - Check for missing width/height attributes682. Cross-reference with **webperf-core-web-vitals** skill:69 - CLS.js (measure total CLS)703. Cross-reference with **webperf-interaction** skill:71 - Layout-Shift-Loading-and-Interaction.js (when shifts occur)7273### SVG Optimization Audit7475When the user asks about SVG performance or file sizes are large:76771. **SVG-Embedded-Bitmap-Analysis.js** - Detect raster images embedded in vector SVGs782. Recommend SVGO optimization for SVGs without embedded bitmaps793. Recommend extracting bitmaps to separate image files with proper formats8081## Decision Tree8283Use this decision tree to automatically run follow-up snippets based on results:8485### After Image-Element-Audit.js8687- **If images missing width/height attributes** → Layout shift risk, run:88 1. **webperf-core-web-vitals:CLS.js** (measure CLS impact)89 2. **webperf-interaction:Layout-Shift-Loading-and-Interaction.js** (timing of shifts)90 3. Recommend adding explicit dimensions to all images9192- **If images using wrong format (JPEG for graphics, PNG for photos)** → Recommend:93 - Modern formats: WebP, AVIF94 - Appropriate format for content type95 - Format-specific compression settings9697- **If images much larger than display size** → Recommend:98 - Responsive images with srcset99 - Appropriate image CDN sizing100 - srcset with multiple sizes for different viewports101102- **If above-the-fold images are lazy-loaded** → Run:103 1. **webperf-loading:Find-Above-The-Fold-Lazy-Loaded-Images.js** (confirm)104 2. **webperf-core-web-vitals:LCP.js** (measure LCP impact)105 3. Recommend removing loading="lazy" from above-fold images106107- **If LCP image lacks fetchpriority="high"** → Run:108 1. **webperf-core-web-vitals:LCP.js** (measure current LCP)109 2. **webperf-loading:Priority-Hints-Audit.js** (full priority audit)110 3. Recommend adding fetchpriority="high" to LCP image111112- **If below-the-fold images are NOT lazy-loaded** → Run:113 1. **webperf-loading:Find-non-Lazy-Loaded-Images-outside-of-the-viewport.js** (confirm)114 2. Recommend adding loading="lazy" to offscreen images115116- **If images have both loading="lazy" AND fetchpriority="high"** → Run:117 1. **webperf-loading:Find-Images-With-Lazy-and-Fetchpriority.js** (confirm contradiction)118 2. Recommend removing one of the conflicting attributes119120- **If images missing alt text** → Accessibility issue, recommend adding descriptive alt text121122### After Video-Element-Audit.js123124- **If video is LCP candidate** → Run:125 1. **webperf-core-web-vitals:LCP-Video-Candidate.js** (confirm)126 2. **webperf-core-web-vitals:LCP.js** (measure LCP)127 3. **webperf-core-web-vitals:LCP-Sub-Parts.js** (break down timing)128 4. Optimize video poster image or consider image alternative129130- **If video missing poster** → Recommend:131 - Adding poster image for better perceived performance132 - Using first frame or custom thumbnail133 - Optimizing poster as you would an image134135- **If video uses preload="auto"** → Bandwidth concern, evaluate:136 - Is video above-the-fold? Keep preload="auto"137 - Is video below-the-fold? Change to preload="metadata" or "none"138 - Is autoplay intended? Verify preload matches intent139140- **If autoplay video without muted** → Browser will block, recommend:141 - Adding muted attribute142 - Or removing autoplay143144- **If video missing multiple formats** → Recommend:145 - WebM for Chrome/Firefox146 - MP4 as fallback for Safari147 - Order sources by efficiency (WebM first)148149- **If large video files (>5MB)** → Recommend:150 - Compression/transcoding151 - Adaptive bitrate streaming (HLS, DASH)152 - Loading strategy optimization153154### After SVG-Embedded-Bitmap-Analysis.js155156- **If bitmap images found in SVGs** → Recommend:157 1. Extract bitmaps to separate files158 2. Use WebP/AVIF format for extracted images159 3. Reference images from SVG with <image> element160 4. Or convert to pure vector if possible161162- **If large embedded bitmaps (>100KB)** → Critical inefficiency:163 - SVG parsing overhead + large bitmap = worst of both worlds164 - Urgently recommend extraction165166- **If multiple small bitmaps in SVG** → Consider:167 - CSS sprites for small icons168 - SVG symbols for reusable graphics169 - Extracting to individual optimized images170171### Cross-Skill Triggers172173These triggers recommend using snippets from other skills:174175#### From Media to Core Web Vitals Skill176177- **If LCP image detected** → Use **webperf-core-web-vitals** skill:178 - LCP.js (measure LCP)179 - LCP-Sub-Parts.js (break down timing phases)180 - LCP-Image-Entropy.js (analyze image complexity)181182- **If video is LCP candidate** → Use **webperf-core-web-vitals** skill:183 - LCP-Video-Candidate.js (confirm and analyze)184 - LCP.js (measure impact)185186- **If images causing layout shifts** → Use **webperf-core-web-vitals** skill:187 - CLS.js (measure cumulative shift)188189#### From Media to Loading Skill190191- **If lazy loading issues detected** → Use **webperf-loading** skill:192 - Find-Above-The-Fold-Lazy-Loaded-Images.js (incorrectly lazy)193 - Find-non-Lazy-Loaded-Images-outside-of-the-viewport.js (missing lazy)194 - Find-Images-With-Lazy-and-Fetchpriority.js (contradictory attributes)195196- **If LCP image needs priority optimization** → Use **webperf-loading** skill:197 - Priority-Hints-Audit.js (fetchpriority analysis)198 - Resource-Hints-Validation.js (preload validation)199200- **If images competing with critical resources** → Use **webperf-loading** skill:201 - Find-render-blocking-resources.js (resource priority conflicts)202 - TTFB-Resources.js (identify slow image CDN)203204#### From Media to Interaction Skill205206- **If images causing layout shifts during interaction** → Use **webperf-interaction** skill:207 - Layout-Shift-Loading-and-Interaction.js (shift timing analysis)208209### Performance Budget Thresholds210211Use these thresholds to trigger recommendations:212213**Image File Sizes:**214- **Warning**: Individual image > 500KB → Check format and compression215- **Critical**: Individual image > 1MB → Urgent optimization needed216- **Total images**: > 5MB on initial load → Implement lazy loading217218**Image Formats:**219- **JPEG for graphics/icons** → Recommend PNG or SVG220- **PNG for photos** → Recommend JPEG, WebP, or AVIF221- **GIF for animations** → Recommend video (MP4/WebM) or animated WebP222- **No modern formats (WebP/AVIF)** → Recommend upgrading223224**Image Dimensions:**225- **Intrinsic size > 2x display size** → Recommend responsive images226- **Intrinsic size < display size** → Upscaling = blurry, provide larger source227228**Video File Sizes:**229- **Warning**: Video > 10MB → Consider compression or streaming230- **Critical**: Video > 50MB → Urgent optimization or streaming needed231232**Lazy Loading:**233- **Above-fold images lazy-loaded** → Critical LCP impact, fix immediately234- **Below-fold images NOT lazy-loaded** → Wasted bandwidth, implement lazy loading235- **>10 images eager-loaded** → Excessive, implement lazy loading236237**Priority Hints:**238- **LCP image without fetchpriority="high"** → Add for 10-30% LCP improvement239- **Non-LCP images with fetchpriority="high"** → Remove, wasting browser hints240- **Lazy + fetchpriority="high" conflict** → Fix contradiction241242### Common Issues and Resolutions243244**Issue: LCP is slow and LCP element is an image**2451. Run Image-Element-Audit.js2462. Run webperf-core-web-vitals:LCP-Image-Entropy.js2473. Check: format, lazy loading, fetchpriority, preload2484. Fix in order: remove lazy, add fetchpriority="high", optimize format, add preload249250**Issue: CLS from images**2511. Run Image-Element-Audit.js2522. Check for missing width/height2533. Add explicit dimensions or aspect-ratio CSS2544. Verify with webperf-core-web-vitals:CLS.js255256**Issue: Page loads too many images**2571. Run Image-Element-Audit.js2582. Run webperf-loading:Find-non-Lazy-Loaded-Images-outside-of-the-viewport.js2593. Implement lazy loading on below-fold images2604. Consider pagination or infinite scroll261262**Issue: Images are the wrong format**2631. Run Image-Element-Audit.js2642. Check format vs content type2653. Recommend WebP with JPEG/PNG fallback2664. Consider AVIF for even better compression267268**Issue: Video is LCP**2691. Run Video-Element-Audit.js2702. Run webperf-core-web-vitals:LCP-Video-Candidate.js2713. Optimize poster image or consider static image alternative2724. Add fetchpriority="high" to poster if keeping video273274**Issue: SVG files are huge**2751. Run SVG-Embedded-Bitmap-Analysis.js2762. Extract embedded bitmaps2773. Run SVGO on pure SVG2784. Re-measure file sizes279280## References281282- `references/snippets.md` — Descriptions and thresholds for each script283- `references/schema.md` — Return value schema for interpreting script output284285> Execute via `mcp__chrome-devtools__evaluate_script` → read with `mcp__chrome-devtools__get_console_message`.