
While much of our Black Friday coverage spans a wide range of prices, it’s no secret that the biggest savings are usually on the expensive, showy stuff like TVs. But if you’ve got a lengthy list for your upcoming holiday gift exchange, or you just need to stretch your budget a little more this year, look no further than these Black Friday deals under $25.
While anyone can find cheap crap on sale during Black Friday (just open up Amazon’s page and count all the items from brands you’ve never heard of), we’re compiling the best budget-friendly deals we know shouldn’t steer you wrong. These are items we’ve tried or even tested ourselves — which is why we can say an Apple AirTag tracker for $24.98 is totally worth it, or why the latest Amazon Echo Dot smart speaker for $24.99 with a free Hue smart bulb is kind of a steal (if you don’t mind living with Alexa).
Call them stocking stuffers or impulse-buys if you’d like, but nothing beats a great deal on something affordable that’s actually good.
//this module finds every h2 and h3 in the article body and creates a table of contents based off them. if you only want to link h2s, set ‘mainHeadsOnly’ in the line below to ‘true’. if you only want to link h3s, set ‘subHeadsOnly’ to ‘true’. obviously, setting both to true will result in no table of contents at all.
//setting the ‘collapsible’ flag to ‘true’ will hide links to h3s until the user interacts with a + button next to the h2 link
//please see graham if you have any issues.
var mainHeadsOnly = false;
var subHeadsOnly = false;
var collapsible = false;
function makeId(length) {
var result = ”;
var characters = ‘ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789’;
var charactersLength = characters.length;
for ( var i = 0; i {
item.classList.remove(“active”);
})
button.classList.add(“active”);
subheads.forEach(item => {
item.classList.add(“active”);
});
} else {
actives.forEach(item => {
item.classList.remove(“active”);
})
}
}
window.addEventListener(‘DOMContentLoaded’, (event) => {
var ids = [];
var html = “”;
const headers = document.querySelectorAll(“.duet–article–article-body-component .duet–article–standard-heading”);
const mainHeads = document.querySelectorAll(“.duet–article–article-body-component h2.duet–article–standard-heading”);
const subHeads = document.querySelectorAll(“.duet–article–article-body-component h3.duet–article–standard-heading”);
const tableOfContents = document.querySelector(“.verge-table-of-contents”);
const returnString = “Return to table of contents“;
var index = 0;
for (let i = 0; i {
item.id = “m_”+ids[index];
index+=1;
});
subHeads.forEach(item => {
item.id = “s_”+ids[index];
index+=1;
});
var index = 0;
var currentHeader = 0;
headers.forEach(item => {
if(item.id) {
if(item.id[0] == “m” && subHeadsOnly == false) {
currentHeader+=1;
html+=”
“;
} else if(item.id[0] == “s” && mainHeadsOnly == false) {
html+=”
“;
}
}
});
if(subHeadsOnly == true) {
tableOfContents.classList.add(‘subheads-only’);
}
if(collapsible == true && subHeadsOnly == false & mainHeadsOnly == false) {
tableOfContents.classList.add(‘expandable’);
}
mainHeads.forEach(item => {
item.innerHTML = item.innerHTML+returnString;
});
subHeads.forEach(item => {
if(mainHeadsOnly == false) {
item.innerHTML = item.innerHTML+returnString;
}
});
tableOfContents.innerHTML = html;
document.querySelectorAll(‘.toc-link’).forEach(item => {
item.tabIndex = “0”;
var target = item.dataset.target
item.addEventListener(‘click’, (e) => {
e.preventDefault();
document.querySelector(target).scrollIntoView();
item.blur();
});
item.addEventListener(‘keydown’, e => {
if(e.code == “Enter”) {
e.preventDefault();
document.querySelector(target).scrollIntoView();
item.blur();
}
});
});
document.querySelectorAll(‘.polygon-table-of-contents .expand’).forEach(item => {
var target = item.dataset.target
var subheads = document.querySelectorAll(‘[data-grouping=”‘+target+'”]’);
if (subheads.length === 0) {
item.classList.add(‘hidden’);
}
item.addEventListener(‘click’, (e) => {
e.preventDefault();
expand(target);
});
});
});
.duet–article–article-body-component .duet–article–standard-heading, #toc-main {
scroll-margin-top: 64px;
padding: 10px 25px;
}
.verge-table-of-contents:empty {
display: none;
}
.duet–article–article-body-component h2.duet–article–standard-heading, .duet–article–article-body-component h3.duet–article–standard-heading {
margin-right: 2rem;
position: relative;
}
.verge-table-of-contents .main-header-link, .verge-table-of-contents.subheads-only .sub-header-link {
margin: 0.25em 0 0.25em 0px;
}
.verge-table-of-contents .sub-header-link {
margin: 0.25em 0 0.25em 15px;
}
.verge-table-of-contents .sub-header-link:last-child {
margin-bottom: 15px;
}
.verge-table-of-contents.expandable .sub-header-link {
display: none;
}
.verge-table-of-contents.expandable .sub-header-link.active {
display: block;
}
.verge-table-of-contents .expand {
display: none;
margin-left: 0.5rem;
border: none;
cursor: pointer;
position: relative;
}
.verge-table-of-contents .expand svg {
margin-top: -4px;
transform-origin: center center;
}
.verge-table-of-contents.expandable .expand {
display: inline;
}
.verge-table-of-contents.expandable .expand.active:after {
content: “”;
display: block;
position: absolute;
right: 0;
top: 50%;
height: 3px;
width: 18px;
background-color: #5200FF;
transform: translateY(-50%);
margin-top: 1px;
}
.verge-table-of-contents.expandable .expand.active svg {
fill: transparent;
}
.verge-table-of-contents.expandable .expand.hidden {
display: inline;
}
.verge-table-of-contents .toc-link {
display: inline;
box-shadow: var(–tw-ring-offset-shadow,0 0 #5200FF),var(–tw-ring-shadow,0 0 #0000),var(–tw-shadow);
–tw-shadow: inset 0 -1px 0 0 #5200FF;
–tw-shadow-colored: inset 0 -1px 0 0 var(–tw-shadow-color);
cursor: pointer;
}
.verge-table-of-contents .toc-link:hover, .duet–article–article-body-component .duet–article–standard-heading .toc-link.toc-return:hover, .verge-table-of-contents .toc-link:focus, .duet–article–article-body-component .duet–article–standard-heading .toc-link.toc-return:focus {
–tw-shadow: inset 0 -.5em 0 0 #3cffd0;
–tw-shadow-colored: inset 0 -.5em 0 0 var(–tw-shadow-color);
}
.duet–article–article-body-component .duet–article–standard-heading .toc-link.toc-return {
margin: 0;
position: absolute;
left: calc(100% + 1rem);
top: 50%;
display: inline-block;
transform-origin: center center;
transform: translate(-50%, -50%);
–tw-shadow: inset 0 -1px 0 0 transparent;
}
.duet–article–article-body-component .duet–article–standard-heading .toc-return .hidden {
display: none;
}
.duet–article–article-body-component .duet–article–standard-heading .toc-return .arrow {
transform: scaleY(-0.85);
display: inline-block;
transform-origin: center center;
cursor: pointer;
}
The best smart home deals under $25
- Amazon’s new fifth-gen Echo Dot smart speaker is discounted to $24.99 ($25 off). It’s got a new processor and more bass than previous versions, and it doubles as an Eero Wi-Fi extender. It’s also available with a free A19, 1,100-lumen Philips Hue smart bulb for the same $24.99 (about $41 off). Read our review of the Echo Dot with Clock.
- You can also buy the third-gen Echo Dot with a month of Amazon Music Unlimited for $9.98 ($39 off). Or, if you prefer a bundle with smart lighting over a subscription you can also buy it with a 1,100-lumen Philips Hue smart bulb for $17.98 ($38 off). While this older Dot’s sound quality is nowhere near the newer orb-shaped models, the puck-like speaker sounds decent enough and can be used to perform various Alexa-enabled tasks. Read our review.
- Kasa’s Smart Wi-Fi Outdoor Plug-In Dimmer is an outdoor smart lighting plug that can dim compatible lights as well as set schedules and timers. It’s selling for $16.99 instead of $29.99 at Amazon and works with Amazon Alexa and Google Assistant.
- The tiny and colorful second-gen Nest Mini smart speaker is just $18 ($31 off) at Walmart. It’s priced slightly higher at $19.99 from Best Buy, Target, and Google. It doesn’t have room-filling sound for listening to music, but it does sound better when mounted to a wall, and it’s the cheapest way to get Google Assistant voice controls into your home.
- A two-pack of Wyze Bulb Color LED smart lights is $19.98 ($7 off) at Amazon. They are bright 1100-lumen bulbs that work with either Amazon Alexa or Google Assistant.
- The myQ Chamberlain Smart Garage Control with wireless garage hub and sensor is down to $16.98 ($10 off) at Amazon. It’s a few dollars away from the all-time low for this garage opener that ensures you know you closed it, regardless of where you are in the world.
- A single Apple AirTag is $24.98 (about $4 off) at Amazon and Walmart. These are a handy tool for keeping track of stuff like your keys or your luggage while traveling. Just don’t be a creep, ok?
- If you like the idea of smart tracker but you use Android or have a split-ecosystem household, you can currently pick up the latest Tile Mate tracker at Amazon for just $17.99 (normally $24.99). The platform-agnostic Bluetooth tracker can help you locate lost objects up to 250 feet away by showing you their location on the Tile app and by emitting a ring when you get close.
The best streaming device deals under $25
- Amazon’s Fire TV Stick 4K streaming dongle is $24.99 ($25 off) at Amazon, Best Buy and Target. That matches the lowest price of this 4K streamer, which supports Dolby Vision and includes a voice remote to control your TV.
- Last year’s Roku Streaming Stick 4K is down to $24.99 at Amazon, Best Buy, and Target (normally $49.99). The standard Streaming Stick 4K gets access to most major streaming services but only offers private listening through the Roku app, not the remote itself, unlike the more $69.99 4K Plus Streaming Stick.
- You can purchase Google’s new, entry-level Chromecast with Google TV (HD) for $18 from Walmart instead of $29.99 and for $19.99 at Best Buy. While it lacks 4K streaming capabilities and is limited to 1080p resolution, it can play HDR videos and comes with a Google Assistant-compatible remote. Read our review.
The best wireless audio deals under $25
- For a couple dollars more you can get the Skullcandy Jib True earbuds for $21.99 ($10 off) from Amazon. These Bluetooth buds don’t have the Tile tracking feature, but they have six hours of battery life and some unique color combinations.
- The newer JBL Go 3 waterproof Bluetooth speaker is usually $49.99 but is on sale for $24.99 at Amazon, Best Buy, or direct from JBL. The JBL Go 3 is small enough to fit in your back pocket and even comes with a handy loop to attach it to the outside of a bag if you run out of space. It can last for up to 10 hours on a single charge as well and gets topped off via USB-C.
The best charging accessory deals under $25
- Anker’s 521 Magnetic Battery with 5,000 mAh capacity is $19.74 (about $30 off) at Amazon when you click the on-page coupon. It can charge via a USB-C cable or magnetically attach to a MagSafe-compatible iPhone for charging wirelessly up to 7.5W (it doesn’t support MagSafe and its proprietary 15W charging speeds).
- The SooPii USB-C cable with a built-in power meter can carry up to 100W of output to a phone or laptop and display a live wattage measurement on its small LCD so you know how fast your devices are charging. It’s currently $8.11 for a four-foot cable or $10.07 for a 6.6-foot at Amazon when you click the on-page coupon. We can chuckle to ourselves at the brand name all we want, but these things are handy and make a nice little stocking stuffer for fellow nerds. Check out our hands-on with a similar cable.
- Belkin is offering up to 25 percent off on its site with code BF22. One of those is the Belkin BoostCharge 10W wireless charging stand for $18.37 (about $17 off) when you use the code.
- The Belkin BoostCharge 10W dual wireless charging pad is $20.99 ($29 off) at Amazon. It comes with its own power adapter and can charge two Qi devices at up to 10 watts. It’s not going to win any charging races, but it’s fine for overnight use.
- Belkin’s USB-C 20W right-angle GaN charger is $12.49 ($12 off) at Amazon and ideal for fast charging when you have an outlet without much room in front of it.
- The Belkin Magnetic Wireless charger has a lengthy six foot cable, comes with a power adapter, and is selling for $14.99 ($15 off) at Amazon. It tops out at 7.5W charging for iPhones, but that’s perfectly fine for most uses.
- Satechi is offering 25-percent off orders on its site with code BFCM25, which easily bumps some pricier items down to our sub-$25 threshold. Though some items like this USB-C Magnetic Wireless Charging Cable drop by 40-percent when you use code DEALS (check the product page description for other items compatible with that promo code).
The best portable storage deals under $25
- Amazon has the Samsung USB-C 256GB flash drive for $23.99 ($16 off). Since it’s USB-C it can transfer files between computers, Android smartphones, and Thunderbolt-equipped iPads up to 400MB/s.
- The SanDisk 128GB Ultra Dual Drive USB thumb drive has a slide-out USB-C port as well as a USB-A port, for connecting to either a phone or computer. It’s on sale for $14.99 ($45 off) at Amazon.
- If you prefer USB-A for more compatibility, this Samsung 256GB flash drive is equally fast and small enough to fit on your keys, and it costs just $24.99 ($11 off) from Amazon.
- Samsung’s EVO Select 64GB microSD card is just $10.99 ($9 off) at Amazon.
- The Samsung Pro Plus 128GB microSD card is $17.99 (about $17 off). These are always handy for use in a Nintendo Switch, Steam Deck, or other devices like a drone or GoPro.
The best gaming deals under $25
- The Teenage Mutant Ninja Turtles Cowabunga Collection is $19.99 ($15 off) for PS4 and Xbox Series X or $24.99 ($10 off) for PS5 and Nintendo Switch at Amazon. This nostalgia-trip of a game collects thirteen classic TMNT titles, with added online play and couch co-op.
- Target is selling a physical copy of Halo: Infinite for Xbox for just $19.99 ($40 off). The multiplayer is free to play, so you’re paying for the open-world campaign which just received a major update for online co-op. Read our review.
- Marvel’s Guardians of the Galaxy is $14.99 ($45 off the original price) at Amazon for PlayStation 4 (with free PS5 upgrade) and Xbox.
- For a very affordable dip into the world of mobile game streaming, the PowerA MOGA Mobile Gaming Clip 2 for Xbox Controllers is just $2.99 ($12 off) from Microsoft. It clips onto a current Xbox wireless controller and mounts your phone above it. It’s a little clumsier than dedicated mobile controllers, but it’s cheap and effective if you already own an Xbox controller.
- The compact Razer DeathAdder v2 Mini wired gaming mouse is on sale for $14.99 ($35 off MSRP) at Amazon. That’s the best price for this small boy, which is actually pretty average-sized compared to other DeathAdders which are on the jumbo side of things.
- For another flavor of compact wired mouse, though with a touch of added RGB underglow, the Razer Viper Mini is $19.99 ($20 off) at Amazon or $23.99 direct from Razer.
- Supergiant Games’ popular roguelike dungeon-crawler Hades (physical) is on sale at Amazon for $19.99 ($10 off) for the PlayStation 5.
- Streets of Rage 4 is on clearance for $19.99 ($15 off) for PS4 / PS5 at Best Buy. It’s perfect if you love some retro co-op beat-em-up action during the holidays when everyone’s around. You can play with up to four players locally or two players online. Read our review.
- Alan Wake Remastered (physical) is on sale for $14.99 ($15 off) from Amazon for PS4 and Xbox. The remaster of the 2010 action-adventure mystery thriller from developer Remedy is being sold by a third party but shipped by Amazon.
- Olli Olli World is on sale for $17.99 ($12 off) through Amazon as a Steam download code. This pastel-tinted skateboarding game mixes in some rhythm game vibes for a unique experience that feels incredibly charming and fun to play. Read our review.
- PowerA’s Enhanced Wired Controller, our favorite budget gamepad for Xbox consoles and PC, is on sale for $23.91 (regularly $37.99) in purple from Amazon.
- Nintendo’s Zelda & Loftwing Amiibo is $9.99 ($15 off) at Amazon. When scanned on the Nintendo Switch while playing The Legend of Zelda: Skyward Sword HD you can take to the sky for easier fast-travel in the game, even while in a dungeon.
- The Samus and E.M.M.I Amiibo two-pack is $14.99 ($15 off) at Amazon. Scan these in Metroid Dread for bonus health and missile upgrades.
- Monster Hunter Rise for the Nintendo Switch is $20 ($12.99 off) at Amazon and Walmart.
Other great Black Friday deals under $25
- The incredibly handy and super-affordable Elephant Card is on sale for $7.99 at Amazon, dropping the price by $2. This little plastic card fits in your wallet and unfolds to be a Continuity Camera mount atop your MacBook, allowing a compatible iPhone to become your webcam for much better quality Zoom calls and video streaming. Read our review.
- The MOFT MagSafe Wallet Stand is $23.99 ($6 off) at Amazon. This combination card wallet and foldable stand attaches to MagSafe-compatible iPhones and is only 5mm thick.