Monitors and other cool PC accessories are discounted during the Prime Early Access Sale | Photo by Sean Hollister / The Verge
All of the deals on display during Amazon’s Prime Day Early Access sale gives us a chance to highlight some cool accessories that typically won’t find their way into our regular deals roundups. Yes, we know that we’ve already got a roundup of the best gaming deals of Prime’s Early Access Sale, but this one is explicitly for the best discounts we could find on PC accessories. That means we’re not just looking at mice, and keyboards, but we’re diving into motherboards, water coolers, and graphics cards too.
While gaming accessories get all the glory, we’re including plenty of PC accessory deals that are productivity first. Whether you’re looking for an ultra-fast external hard drive, or a slick-looking PC case, our Amazon Prime Early Access roundup of PC accessories has got you covered. Make sure to also check out our collection of the best deals from Amazon’s Prime Early Access Sale for the latest discounts.
“;
} 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);
});
});
});