MSA3 Air Purifier for Allergy and Asthma True HEPA Filter for 1590 sq ft Large Room
MSA3 Air Purifier for Allergy and Asthma True HEPA Filter for 1590 sq ft Large Room
MSA3 Air Purifier for Allergy and Asthma True HEPA Filter for 1590 sq ft Large Room
MSA3 Air Purifier for Allergy and Asthma True HEPA Filter for 1590 sq ft Large Room
MSA3 Air Purifier for Allergy and Asthma True HEPA Filter for 1590 sq ft Large Room

MSA3 Air Purifier for Allergy and Asthma True HEPA Filter for 1590 sq ft Large Room

$96.00
$179.89
-$83.89
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Membrane Solutions
SKU: HERAP021_MW1
Membrane Solutions® MSA3-S HEPA Filter Air Purifier with a CADR of 112CFM(190 m³/h) can clean rooms up to 1590 ft² in as little as an hour or 5 times 420 ft² rooms in just 30 mins, True HEPA Filter, and Activated Carbon Filter, which removes the vast majority of vinyl chloride, pollen, formaldehyde, smoke, pet hair, dander, odor, and large dust particles, and PM 2.5. Perfect for pet owners, babies, children, and the elderly. MSA3-S uses an upgraded version of the filter, adding OdallerPure® technology, optimizing the structure and content of activated carbon, and greatly improving the odor-removal effect. MSA3-S is a true ozone-free air cleaner and received certifications from the California Air Review Board (CARB), the Electrical Testing Laboratories(ETL), and RoHS Certification.

MSA3-Smart upgrades the PM2.5 real-time air quality detection unit based on MSA3-W. The 3 colors represent different air qualities, bringing you a more intuitive air purification experience. ou can use a smartphone to match with MSA3-S by 2.4 GHz WiFi. Adjust the purification settings, timers, fan speeds, sleep mode, and display lock. MSA3-S is a truly smart WiFi air purifier, which supports WiFi-enabled air monitoring and filtration devices that do a good job of removing harmful airborne particulate matter. This WiFi air purifier is also air purifier Alexa controlled, thus you can also pair your purifier with Alexa.

MSA3-S has the technology to identify the original filter. Using any non-original filters may cause the MSA3-S air purifier can't work. Recommended to replace the genuine filter every 6-8 months for optimal air quality(depending on the air quality), to find the replacement filter on Walmart item id: 960578637(🚀click here switch)

 

Smart Wi-Fi controlled compatible with MSPure application (Download Support Android/ios).Alexa Voice control turn on/off.Realtime air quality & filter life display.Automatically match Fan Speed according to air quality.H13 True HEPA Air Purifier for living room, purification area up to 420 Sq. Ft in 30 mins, and 1500 sq ft in 1 hour.The Air Filter is Pre-installed, MSA3S Replacement Filter ( Replace every 6-8 months)Ozone Free, Certified to ETL, FCC, CE, and RoHS.
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.