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);
});
});
});