RGB Headphone Bracket Multifunctional Headphone Rack Hanger

people are viewing this right now
Free shipping on orders over 50
Free returns within fourteen days
Contact us: service@goodidealshop.com
Secure payments
$97.99
$199.99
Save 51%
Color : PINK
Quantity
Description
All products are authentic, authentic patents, fakes must be investigated! Please find our products!
98.9% of customers buy 2 or more
  • Worldwide Shipping.
  • Payment via PayPal ® and credit card.
  • Fast Money Back Guarantee >> Partial or Full Refund Subject to Circumstances
  • Buy more and save more 🎉

MAIN FEATURES:

  • Three functional aggregation:This multi -functional headset bracket is made of aluminum alloy. The non -slip base has 1 3.5mm headset interface and 4 USB ports. It is also paired with a mobile mouse clip, which can make your mouse move as smooth as a wireless mouse, dazzling dazzling The cool appearance with RGB light effect can make your computer desktop no longer monotonous.
  • USB Hub with 3.0 Ports: Hi-Speed ​​USB charging hub for all gaming accessories. Whether it's a keyboard, mouse, external hard drive, and more, your speed matters! USB 2.0 is slow, please don't damage your device.

  • 3.5mm microphone port: support external devices, such as mouse, keyboard, U disk, use with 3.5mm headphone jack

  • Ingenious design: top silicone pad design, anti-deformation, anti-scratch, long-term suspension without deformation

  • High-quality material selection: the quality is self-evident. Aluminum alloy + silicone workmanship, reinforced base, not easy to tip over, this gaming accessory for your desk keeps your room organized and cool with RGB lighting and functional uses.

  • Detachable mouse cable clip: keep your desktop clean, tidy up the cable routing, and prevent dragging

Specification

  • Material: aluminum alloy + silicone
  • Weight: 440 grams

Free shipping on orders over $30.
Orders are processed within 7 business days of placing the order and shipped the day after the processing date. Orders usually arrive within 7 to 14 business days.
Click "Add to Cart" to buy now!

Why us?
We work directly with manufacturers around the world to ensure the best quality of our products. We have a quality control department to help us keep our promises!
Prices are always competitive.
excellent customer service
Amazing product and high quality
Read reviews from our dear customersReviews from our dear customers

Our Guarantee
📦 Insured Worldwide Shipping: Orders will be processed within 2-5 days of payment received. Every order comes with real-time tracking details and insurance coverage in case the package is lost or stolen in transit. Orders are processed within 2-5 days of payment. Every order comes with real-time tracking details and insurance coverage in case the package is lost or stolen in transit.

💰 MONEY BACK GUARANTEE: If your item arrives or is damaged within 15 days, or becomes defective within 15 days of normal use, we will happily replace or refund your money.

☉️ 24/7 CUSTOMER SUPPORT: We have a team of live staff, ready to help you and answer your questions 24 hours a day, 7 days a week.

🔒 Safe and secure checkout: We use state-of-the-art SSL security encryption to 100% protect your personal and financial information.

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.