YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
8/12
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y
8/12

YONZEE Tesla Central Control Quick Charger Docking Station For Tesla Model 3/Y

$47.99
$59.99
486 sold
ColorFor Model Y
Please select a color
Quantity
Weight: 480g

Installation instructional

Quality and service assured purchase

Considerate after-sales service

Telescopic Line · Invisible Intelligent Expansion Dock

Multi protocol compatibility | 72W total interface | 600% speed increase

Do you have any of the following troubles

Original technology subverts design

So far, it is more suitable for Tesla's central control expansion dock

Comparison before and after installation

No need to worry about having fewer interfaces in the original car for non-destructive installation

Simultaneously satisfying Multiple usage requirements

Charging multiple devices simultaneously

The original car is seamlessly matched in the same color Integrated with central control

The embedded installation of the original car technology is highly fitting and integrated with the central control system

Auto shrink charging line Farewell to the messy interior of the car

When using, simply pull down one end of the interface and hear a "click" to fix the gear position Pull out slightly and the data cable will automatically retract

Long term use does not affect Reset, open, close, and push pull the central control cover plate

Extended edge fitting and embedded installation do not affect the opening and closing of the cover plate

Polymer cell Intelligent protection provides more peace of mind

Extended edge fitting and embedded installation do not affect the opening and closing of the cover plate

Total of all interfaces 72w Refuse to charge at turtle speed by increasing the speed by 600%

Full interface total 72W fast charging, stable charging, 4x speed increase

Plug and Play More convenient to plug and unplug

Suitable for various brands of ports, no need to open the cover to charge after installation, bid farewell to messy

Oblique cutting angle fitting Farewell to messy, tidy, and beautiful appearance

The all-new integrated design is lighter, more space saving, and more worry free

Widely compatible Relieve anxiety about electricity consumption during long-distance travel

Simultaneously satisfying Multiple usage requirements

Product parameters

Real time display

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.