A Chrome extension that cosmetically replaces YouTube Studio statistics with custom numbers for screenshots, presentations, or motivation. All changes are purely visual and client-side only - no data is sent anywhere or modified on YouTube's servers.
- ๐จ Purely Cosmetic: Only changes what you see on your screen
- ๐ Private: No data leaves your browser
- ๐พ Persistent: Settings are saved across sessions
- ๐ SPA Compatible: Works with YouTube Studio's single-page app navigation
- ๐ Theme Support: Works with both light and dark YouTube Studio themes
- โก Real-time Updates: Uses MutationObserver to update stats as pages load
- ๐งฎ Auto Revenue Calculation: Automatically calculates revenue based on views and RPM/CPM
- ๐ฏ Comprehensive: Replaces ALL visible stats across EVERY YouTube Studio page
- Subscriber count
- Total views
- Video count
- Views (last 28 days)
- Watch time hours
- Average view duration
- Likes
- Comments
- Shares
- Estimated revenue
- RPM (Revenue per Mille)
- CPM
- Download or clone this repository
- Open Chrome and navigate to
chrome://extensions/ - Enable "Developer mode" in the top right
- Click "Load unpacked"
- Select the
im-famousfolder - The extension icon should appear in your toolbar
- Navigate to YouTube Studio
- Click the "I'm Famous" extension icon in your toolbar
- Toggle "Enable Fake Stats" on
- Enter your desired custom numbers in the input fields
- Revenue auto-calculates: Just enter Views (28 days) and RPM - revenue calculates automatically!
- Click "Save Settings"
- Your custom stats will now appear on ALL YouTube Studio pages:
- Dashboard metrics
- Analytics charts and numbers
- Video list (content page) - all columns
- Individual video pages - every stat
- Revenue/Monetization pages
- Comments section counts
- Engagement metrics
- Real-time stats
- And everywhere else numbers appear!
Simply toggle "Enable Fake Stats" off in the popup. The real statistics will immediately be restored.
im-famous/
โโโ manifest.json # Extension configuration (Manifest V3)
โโโ popup.html # Extension popup UI
โโโ popup.css # Popup styling
โโโ popup.js # Popup logic and settings management
โโโ content.js # Main content script that replaces stats
โโโ icon16.png # Extension icon (16x16)
โโโ icon48.png # Extension icon (48x48)
โโโ icon128.png # Extension icon (128x128)
โโโ README.md # This file
The manifest references three icon files that need to be created:
icon16.png(16x16 pixels)icon48.png(48x48 pixels)icon128.png(128x128 pixels)
You can create these using any image editor or online icon generator. Suggested icon: a star or trophy emoji.
- Make sure the extension is enabled in
chrome://extensions/ - Check that "Enable Fake Stats" is toggled on in the popup
- Make sure you've entered values for the stats you want to replace
- Try refreshing the YouTube Studio page
- Open the browser console (F12) and check for any error messages
YouTube Studio occasionally updates its design. If stats stop being replaced:
- Open
content.js - Look for the
STAT_SELECTORSarray near the top - Update the CSS selectors to match YouTube's new structure
- You can use Chrome DevTools to inspect elements and find new selectors
- No external connections: This extension never sends data anywhere
- Local storage only: Settings are stored locally using Chrome's storage API
- Minimal permissions: Only requests access to YouTube Studio and local storage
- Open source: All code is visible and can be audited
- Manifest Version: V3 (latest Chrome extension standard)
- Permissions:
storage,activeTab,scripting, and host permission forstudio.youtube.com - Content Script: Runs on all
studio.youtube.compages - DOM Manipulation: Uses MutationObserver to detect and update dynamic content
- Storage: Chrome's sync storage for settings persistence
- Only works on YouTube Studio (studio.youtube.com)
- Does not affect screenshots taken by YouTube Studio itself
- Custom values must be entered manually
- Some deeply nested or dynamically generated stats may not be caught
This is a simple client-side extension. If YouTube changes their layout and the selectors need updating, feel free to modify the STAT_SELECTORS in content.js.
Free to use and modify for personal purposes.
This extension is for personal use only. It does not modify any actual YouTube data or analytics. All changes are purely cosmetic and visible only in your browser. Use responsibly and ethically.