;(function($){ $( document ).on( 'change', '#report_type,#report_period,#input_based', function(){ var url = quads_localize_data.rest_url + 'quads-adsense/get_report_adsense'; var report_type = $('#report_type').val(); var report_period = $('#report_period').val(); var input_based = (typeof $('#input_based').val() !== "undefined")?$('#input_based').val():''; var pub_id = $('#pub_id').val(); var data ={account_id:pub_id,report_type:report_type,report_period:report_period,input_based:input_based}; if($.trim(report_type) !='' & $.trim(report_period) !='' ) { $('#quads_reports_canvas').html('
'); $.ajax({ url: url, type: 'post', data: JSON.stringify(data), headers: { 'Accept': 'application/json', 'Content-Type': 'application/json', 'X-WP-Nonce': quads_localize_data.nonce, }, success: function (response, status, XHR) { quads_display_report(response); }, error: function (request, status, error) { }, }); }else{ $('#quads_reports_canvas').html('

Please select Report type and Duration

'); } } ); $( document ).on( 'click', '#quads-connect-adsense', function(){ if ( $( this ).hasClass( 'disabled_adsense_link' ) ) return; if ( 'undefined' != typeof window.quadsMapiConnect ) { window.quadsMapiConnect(); } } ); // Unique instance of "quadsMapiConnectClass" var INSTANCE = null; var quadsMapiConnectClass = function( content, options ) { this.options = {}; this.AUTH_WINDOW = null; this.modal = $( '#gadsense-modal' ); this.frame = null; if ( 'undefined' == typeof content || ! content ) { content = 'confirm-code'; } this.setOptions( options ); this.init(); this.show( content ); return this; }; quadsMapiConnectClass.prototype = { constructor: quadsMapiConnectClass, // Set options, for re-use of existing instance for a different purpose. setOptions: function( options ) { var defaultOptions = { autoads: false, onSuccess: false, onError: false, }; if ( 'undefined' == typeof options ) { options = defaultOptions; } this.options = $.extend( {}, defaultOptions, options); }, // Tasks to do after a successful connection. exit: function(){ if ( this.options.onSuccess ) { if ( 'function' == typeof this.options.onSuccess ) { this.options.onSuccess( this ); } } else { window.location.reload(); } }, // Initialization - mostly binding events. init: function(){ var that = this; // Close the modal and hide errors. $( document ).on( 'click', '#gadsense-modal .dashicons-dismiss', function(){ $( '#mapi-code' ).val( '' ); $( '#gadsense-modal, #gadsense-modal-error' ).css( 'display', 'none' ); } ); // Confirm code for account connection. $( document ).on( 'click', '#quads-mapi-confirm-code', function(){ var code = $( '#mapi-code' ).val(); if ( '' == code ) return; $( '.gadsense-overlay' ).css( 'display', 'block' ); $( '#gadsense-modal-error' ).hide(); var data = { action: 'quads_gadsense_mapi_confirm_code', code: code, nonce: quads.nonce, }; $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( null !== that.AUTH_WINDOW ) { that.AUTH_WINDOW.close(); } $( '#mapi-code' ).val( '' ); if ( response.status && true === response.status && response['token_data'] ) { that.getAccountDetails( response['token_data'] ); } else { /** * Connection error handling. */ $( '.gadsense-overlay' ).css( 'display', 'none' ); $( '#mapi-code' ).val( '' ); $( '#mapi-autoads' ).prop( 'checked', false ); $( '#gadsense-modal-content-inner .dashicons-dismiss' ).trigger( 'click' ); if ($.parseJSON(response.response_body).error === 'invalid_grant') { $('#gadsense-modal-error').show(); $('#gadsense-reopen-connect').one('click', function (event) { event.preventDefault(); $('#gadsense-modal-error').hide(); that.show(); }); } } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); } ); // Account selection $( document ).on( 'click', '.gadsense-modal-content-inner[data-content="account-selector"] button', function( ev ) { var adsenseID = $( '#mapi-select-account' ).val(); var tokenData = false; var tokenString = $( '.gadsense-modal-content-inner[data-content="account-selector"] input.token-data' ).val(); var details = false; var detailsString = $( '.gadsense-modal-content-inner[data-content="account-selector"] input.accounts-details' ).val(); try { tokenData = JSON.parse( tokenString ); } catch ( Ex ) { console.error( 'Bad token data : ' + tokenString ); } try { details = JSON.parse( detailsString ); } catch ( Ex ) { console.error( 'Bad account details : ' + detailsString ); } if ( details && JSON ) { $( '.gadsense-overlay' ).css( 'display', 'block' ); var data = { action: 'quads_gadsense_mapi_select_account', nonce: quads.nonce, account : details[ adsenseID ], 'token_data': tokenData, }; if ( $( '#mapi-autoads' ).prop( 'checked' ) ) { data['autoads'] = 1; } $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( response.status && true === response.status ) { INSTANCE.exit(); } else { console.log( response ); } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); } } ); }, show: function( content ) { if ( 'undefined' == typeof content ) { content = 'confirm-code'; } this.switchContent( content ); if ( 'confirm-code' == content ) { // Open Google authentication in a child window. this.modal.css( 'display', 'block' ); var oW = $( window ).width(), oH = $( window ).height(), w = Math.min( oW, oH ) * 0.8, h = Math.min( oW, oH ) * 0.8, l = (oW - w) / 2, t = (oH - h) / 2, args = 'resize=1,titlebar=1,width=' + w + ',height=' + h + ',left=' + l + ',top=' + t; this.AUTH_WINDOW = window.open( quads_adsense.auth_url, 'quadsOAuth2', args ); } }, // Get account info based on a newly obtained token. getAccountDetails: function( tokenData ){ var data = { action: 'quads_gadsense_mapi_get_details', nonce: quads.nonce, }; data['token_data'] = tokenData; if ( $( '#mapi-autoads' ).prop( 'checked' ) ) { data['autoads'] = 1; } $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( response.status && true === response.status ) { if ( response['adsense_id'] ) { INSTANCE.exit(); } else if ( response['token_data'] ) { INSTANCE.switchContent( 'account-selector' ); INSTANCE.frame.find( 'select' ).html( response.html ); INSTANCE.frame.find( 'input.token-data' ).val( JSON.stringify( response['token_data'] ) ); INSTANCE.frame.find( 'input.accounts-details' ).val( JSON.stringify( response['details'] ) ); } else { INSTANCE.switchContent( 'error' ); INSTANCE.frame.find( '.error-message' ).text( JSON.stringify( response ) ); } } else { if ( response['raw']['errors'][0]['message'] ) { INSTANCE.switchContent( 'error' ); INSTANCE.frame.find( '.error-message' ).text( response['raw']['errors'][0]['message'] ); if ( 'undefined' != typeof quads.connectErrorMsg[response['raw']['errors'][0]['reason']] ) { INSTANCE.frame.find( '.error-description' ).html( quads.connectErrorMsg[response['raw']['errors'][0]['reason']] ); } else { INSTANCE.frame.find( '.error-message' ).append( ' (' + response['raw']['errors'][0]['reason'] + ')' ); } } else if ( response['raw']['message'] ) { INSTANCE.frame.find( '.error-message' ).text( response['raw']['errors'][0]['message'] ); } } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); }, // Switch between frames in the modal container. switchContent: function( content ) { if ( this.modal.find( '.gadsense-modal-content-inner[data-content="' + content + '"]' ).length ) { this.modal.find( '.gadsense-modal-content-inner' ).css( 'display', 'none' ); this.frame = this.modal.find( '.gadsense-modal-content-inner[data-content="' + content + '"]' ); this.frame.css( 'display', 'block' ); $( '.gadsense-overlay' ).css( 'display', 'none' ); } }, // Show the modal frame with a given content. // Hide the modal frame hide: function(){ this.switchContent( 'confirm-code' ); this.modal.css( 'display', 'none' ); }, }; window.quadsMapiConnectClass = quadsMapiConnectClass; // Shortcut function. window.quadsMapiConnect = function( content, options ) { if ( 'undefined' == typeof content || ! content ) { content = 'confirm-code'; } if ( 'undefined' == typeof options ) { options = {}; } if ( null === INSTANCE ) { INSTANCE = new quadsMapiConnectClass( content, options ); } else { INSTANCE.show( content, options ); } } $(function(){ // Move the the pop-up outside of any form. $( '#wpwrap' ).append( $( '#gadsense-modal' ) ); }); })(window.jQuery); function quads_display_report(response){ var report_type = document.getElementById('report_type').value; if(report_type == 'top_device_type') { var data_length = response.length; var datasets =[]; var dates_array = []; var desktop_total =0; var tablet_total =0; var mobile_total =0; for (index = 0; index < data_length; ++index) { if(!dates_array.includes(response[index][0]) ) { dates_array.push(response[index][0]); } if (response[index][1] == 'Desktop') { desktop_total += parseFloat(response[index][2]); } else if (response[index][1] == 'Tablet') { tablet_total += parseFloat(response[index][2]); } else if (response[index][1] == 'HighEndMobile') { mobile_total += parseFloat(response[index][2]); } } datasets= [{ data: [ desktop_total.toFixed(2),tablet_total.toFixed(2),mobile_total.toFixed(2) ], backgroundColor: [ 'red', 'green', 'blue', ], label: 'Top Earning Device type' }]; var config = { type: 'pie', data: { datasets: datasets, labels: [ 'Desktop', 'Tablet', 'Mobile', ] }, options: { legend: { position: 'bottom', }, hover: { mode: 'nearest', intersect: true }, responsive: true } }; }else { var data_length = response.length; var dates_array = []; var data = []; for (index = 0; index < data_length; ++index) { var date = new Date((response[index][0])); var month = date.toLocaleString('default', { month: 'short' }); var New_date_formate = date.getDate()+' '+month+' '+date.getUTCFullYear(); if (!dates_array.includes(New_date_formate)) { dates_array.push(New_date_formate); } data.push(response[index][1]); } datasets = [{ label: 'Earnings', backgroundColor: 'red', borderColor: 'red', data: data, fill: false, }]; var config = { type: 'line', data: { labels: dates_array, datasets: datasets }, options: { legend: { position: 'bottom', }, hover: { mode: 'nearest', intersect: true }, responsive: true, tooltips: { mode: 'index', intersect: false, }, plugins: { title: { display: true, text: 'Chart.js Line Chart' }, }, scales: { xAxes: { display: true, scaleLabel: { display: true, labelString: 'Month' } }, yAxes: { display: true, scaleLabel: { display: true, labelString: 'Value' } } } } }; } quadsDrawChart(config); } function quadsDrawChart(config){ if(document.getElementById("quads_canvas")) document.getElementById("quads_canvas").outerHTML = ""; var new_canvas = "" + " "; document.getElementById('quads_reports_canvas').innerHTML = new_canvas; if(window.myPieChart ) { window.myPieChart.update(); } // Get the context of the canvas element we want to select var ctx = document.getElementById('quads_canvas'); // ctx.clearRect(0, 0, canvas.width, canvas.height); window.myPieChart = new Chart(ctx, config); }import countryTranslations from "./countries.js"; import interfaceTranslations from "./interface.js"; export { countryTranslations, interfaceTranslations }; const allTranslations = { ...countryTranslations, ...interfaceTranslations }; export default allTranslations; .redux-container-datetime .redux-datetime-container .input_wrapper, .redux-container-datetime .redux-datetime-container .single_wrapper { display: block; position: relative; margin: 0 4px 0 5px; padding: 0; width: 25%; max-width: 25%; min-width: 70px; float: left; clear: none; height: 57px; -webkit-box-sizing: border-box; box-sizing: border-box; vertical-align: baseline; } .redux-container-datetime .redux-datetime-container .single_wrapper { width: 50% !important; max-width: 50% !important; } .redux-container-datetime .redux-datetime-container label { display: block; position: relative; font-size: 12px !important; text-align: left; color: #999999; margin: 4px 0 2px 0 !important; cursor: default; } .redux-container-datetime .redux-datetime-container .redux-date-picker { width: 100%; } .redux-container-datetime .redux-datetime-container .redux-time-picker { width: 100%; } .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; } .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } .ui-timepicker-div dl { text-align: left; } .ui-timepicker-div dl dt { float: left; clear: left; padding: 0 0 0 5px; } .ui-timepicker-div dl dd { margin: 0 10px 10px 40%; } .ui-timepicker-div td { font-size: 90%; } .ui-timepicker-div .ui_tpicker_unit_hide { display: none; } .ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input { background: none; color: inherit; border: none; outline: none; border-bottom: solid 1px #555; width: 95%; } .ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input:focus { border-bottom-color: #aaa; } .ui-timepicker-div.ui-timepicker-oneLine { padding-right: 2px; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time, .ui-timepicker-div.ui-timepicker-oneLine dt { display: none; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time_label { display: block; padding-top: 2px; } .ui-timepicker-div.ui-timepicker-oneLine dl { text-align: right; } .ui-timepicker-div.ui-timepicker-oneLine dl dd, .ui-timepicker-div.ui-timepicker-oneLine dl dd > div { display: inline-block; margin: 0; } .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_millisec:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_microsec:before { content: "."; display: inline-block; } .ui-timepicker-div.ui-timepicker-oneLine dd.ui_tpicker_minute:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_second:before { content: ":"; display: inline-block; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide, .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide:before { display: none; } .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } .ui-timepicker-div .ui-slider { position: relative; text-align: left; } .ui-timepicker-div .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; -ms-touch-action: none; touch-action: none; } .ui-timepicker-div .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: 0.7em; display: block; border: 0; background-position: 0 0; } .ui-timepicker-div .ui-slider.ui-state-disabled .ui-slider-handle, .ui-timepicker-div .ui-slider.ui-state-disabled .ui-slider-range { -webkit-filter: inherit; filter: inherit; } .ui-timepicker-div .ui-slider-horizontal { height: 0.8em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-handle { top: -0.3em; margin-left: -0.6em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-handle { top: -0.3em; margin-left: -0.6em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range-min { left: 0; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range-max { right: 0; } .ui-timepicker-div .ui-slider-vertical { width: 0.8em; height: 100px; } .ui-timepicker-div .ui-slider-vertical .ui-slider-handle { left: -0.3em; margin-left: 0; margin-bottom: -0.6em; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range-min { bottom: 0; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range-max { top: 0; } .ui-timepicker-rtl { direction: rtl; } .ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; } .ui-timepicker-rtl dl dt { float: right; clear: right; } .ui-timepicker-rtl dl dd { margin: 0 40% 10px 10px; } /*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInJlZHV4LWRhdGV0aW1lLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRVE7QUFBQTtDQUVJO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFHSjtDQUNJO0NBQ0E7O0FBR0o7Q0FDRTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFHRjtDQUNJOztBQUdKO0NBQ0k7OztBQU1aO0NBQ0k7Q0FDQTtDQUNBO0NBQ0E7OztBQUlBO0NBQ0k7O0FBR0o7Q0FDSTs7QUFFQTtDQUNJO0NBQ0E7Q0FDQTs7QUFHSjtDQUNJOztBQUlSO0NBQ0k7O0FBR0o7Q0FDSTs7QUFHSjtDQUNHO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFFQTtDQUNJOztBQUlQO0NBQ0k7O0FBRUE7QUFBQTtDQUVJOztBQUdKO0NBQ0k7Q0FBZ0I7O0FBR3BCO0NBQ0k7O0FBRUE7QUFBQTtDQUVJO0NBQ0E7O0FBR0o7QUFBQTtDQUVJO0NBQ0E7O0FBS1I7QUFBQTtDQUVJO0NBQ0E7O0FBR0o7QUFBQTtDQUVJOztBQUlSO0NBQ0k7O0FBR0E7Q0FDSTtDQUNBOztBQUVBO0NBQ0k7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7O0FBR0o7Q0FFSTs7QUFJUjtDQUNJOztBQUVBO0NBQ0k7Q0FDQTs7QUFHSjtDQUNJO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBOztBQUdKO0NBQ0k7O0FBR0o7Q0FDSTs7QUFJWjtDQUNJO0NBQ0E7O0FBRUE7Q0FDSTtDQUNBO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBOztBQUdKO0NBQ0k7O0FBR0o7Q0FDSTs7O0FBS1o7Q0FDSTs7QUFFQTtDQUNJO0NBQ0E7O0FBRUE7Q0FDSTtDQUNBOztBQUdKO0NBQ0kiLCJmaWxlIjoicmVkdXgtZGF0ZXRpbWUuY3NzIn0= */ /*# sourceMappingURL=redux-datetime.css.map */ Cooling Pads – CompareInsight https://compareinsight.com Your Shortcut to the Best Deals. Thu, 17 Jul 2025 13:15:34 +0000 en-US hourly 1 https://compareinsight.com/wp-content/uploads/2025/04/Favicon-100x100.png Cooling Pads – CompareInsight https://compareinsight.com 32 32 Laptop Cooling Pad with 12 Quiet Fans, Slim Portable for 12-17.3 Inch Laptop Cooler Stand, RGB Lighting, with 5 Height Adjustable, Gaming Cooling Fan Pad, USB/Type-C & Phone Holder (LCD) https://compareinsight.com/product/laptop-cooling-pad-with-12-quiet-fans-slim-portable-for-12-17-3-inch-laptop-cooler-stand-rgb-lighting-with-5-height-adjustable-gaming-cooling-fan-pad-usb-type-c-phone-holder-lcd/ https://compareinsight.com/product/laptop-cooling-pad-with-12-quiet-fans-slim-portable-for-12-17-3-inch-laptop-cooler-stand-rgb-lighting-with-5-height-adjustable-gaming-cooling-fan-pad-usb-type-c-phone-holder-lcd/#respond Thu, 17 Jul 2025 13:12:15 +0000 https://compareinsight.com/?post_type=product&p=7016

Atzeste Laptop Cooling Pad for Laptops, Laptop Cooler with 6 Quiet Cooling Fans for 12''-17.3'' Laptops, Height Wind Speed Adjustable Laptop Cooling Stand, 2...

5.0
$21.09 $39.99
in stock
Walmart.com
Keep your laptop cool and quiet with the Atzeste Laptop Cooling Pad. This high-performance laptop cooler features 6 powerful blue LED fans with adjustable speeds and a long 20,000-hour lifespan—ideal for work, gaming, or streaming. Designed with comfort in mind, it offers 5 adjustable height...

User reviews

Good cooling pad for laptop. The pad is a solid choice for keeping my laptop cool during heavy use. The quiet fans provide cool airflow without being noisy, which is good for working in quiet spaces. I like the adjustable height and wind speed, as it helps with both comfort and cooling. The phone stand and USB ports are convenient to me. Overall, it's well-designed, effective, and worth the price.
Does the job! I purchased this for my work laptop because it runs hot with the long hours I have to work and this cooling pad has significantly dropped the temperature of it. It's quiet so it doesn't interrupt you while trying to concentrate. I highly recommend for someone who has to be on a laptop all day.
Works great and stays quiet. This cooling pad has been awesome for keeping my laptop cool, even when I'm doing heavier stuff. The six fans push out a good amount of airflow and stay super quiet, even at full blast. It fits my 15.6" laptop perfectly and feels sturdy. I like that you can adjust the height and fan speed—it makes using it a lot more comfortable. The USB ports are super useful, and the little phone holder is a nice extra. Overall, it's lightweight, easy to use, and totally worth it if your laptop runs hot.
Handy, Quiet Cooling Pad. This cooling pad is a simple, effective solution. It keeps my laptop noticeably cooler during long sessions. The two fans run very quietly. I appreciate the adjustable tilt for better typing angles. Its slim profile makes it easy to slip into my bag. A good, basic cooler that does its job well. Recommended.
Great cooling pad for laptop. Exactly as described would recommend this cooling stand for anyone with a laptop computer. It was a great buy at a great price and it was shipped to our door. Super fast A cool cooling pad exactly as described would recommend this cooling stand for anyone with a laptop computer. It was a great buy at a great price and it was shipped to our door. Super fast A
A Game Changer Laptop Stand. I can't believe the difference it has made! Being able to adjust the height means I can find the perfect angle for typing, which has really helped with my neck and back pain. It's super sturdy, so I never worry about my laptop slipping or wobbling while I work. Plus, it looks great on my desk very sleek and modern. Blue light and fan is just classic
Laptop saver. This cooler have saved my laptop. My laptop was constantly overheating and turning off. This cooler is really plug and play. Does not need any special cords or assembly. You can adjust the fan speed on it and it has an adjustable stand if you use your laptop at an angle.
Works great and very quiet. This cooling pad is exactly what I needed. The 6 fans keep my laptop cool and they're really quiet, even when running at full speed. I use it with my 15.6” laptop and it fits perfectly. I like that the height and fan speed are adjustable, and the extra USB ports are super handy. The phone holder is a nice bonus too. Overall, it's lightweight, easy to use, and does a great job for the price. Definitely recommend if your laptop gets hot!
Extends the lifespan of your laptop or tablet. Let's face it. Heat kills electronics and laptops are notorious for having poor cooling. I recommend using coolers with all laptops and even a tablet if you are going to leave the display on continuously. This cooler has plenty of fans to whisk away any excess heat and it can speed up your CPU and video card by keeping it cool. Without it, the heat buildup inside the laptop can shorten the lifespan of the device. Worth the low cost to protect your laptop.
Super Quiet and Keeps Laptop Cool. I use this cooling pad daily and love how quiet it is—even with all six fans running. My laptop stays cool during long Zoom calls. The height options make typing way more comfortable too. Great buy for everyday use!

LIENS Laptop Cooling Pad with Adjustable Height Two 5.1 Inches Fan 2 USB Ports Suitable for 12"-15.6" Laptops(Black)

4.0
$14.99 $30.00
in stock
Walmart.com
LIENS 11"-15.6" laptop cooling pad - Slim Portable USB Powered (2 Fans), Black/white ,Slim, Light Weight, and Portable. Ergonomic Comfort With the help of ergonomic design and the 2 adjustable height setting, the LIENS gaming laptop cooling pad provides you with the most relaxing incline angle...

User reviews

Does the job. Simple materials, but solidly built for its purposes. Perfect size for my 14" latop. The right amount of cooling for a business laptop wirh two quiet fans. You might want something more powerful if you have a laptop that generates a huge amount of heat.
Love it! I've never owned one of these before, so I honestly have nothing to compare it to and I didn't know what to expect. In the past, I've just used a mini fan to keep my laptop from overheating, but this cooling pad is so much better! Not only does it keep my laptop evenly and continually cool with a quiet, gentle breeze, but what I really love that it has an adjustable stand. I can now elevate and tilt my laptop to a much more comfortable position, and I have a better view of my keyboard, too. Having arthritis in my neck and spine, and having had bilateral carpal tunnel release surgery, this is a welcome change! I don't know how long the fans on this device will last, but it seems well-made and I'm quite happy with it. And yes, it keeps my laptop nice and cool, and performing properly instead of lagging like it did whenever it would overheat. I wish I would have bought one years ago, if only for the option of positioning my laptop better. I highly recommend it!
Good cooling pad. keeps laptop cooler. My laptop was running hot from inadequate cooling fan, even on the cool mode setting. like the different angle setting and how it keeps laptop elevated above desktop. well built and sturdy for price. Nice product.
This cooling pad definitely has been a big help. My daughter uses this for her school computer which gets hot all the time. This device has helped her tremendously with her school computer. She brings it to school also. I would definitely recommend it.
i purchased this for my gaming laptop and Asus Tuf %26 it keeps it cooled down perfectly. it is exactly the same size as the lap top. i can sit in my recliner and have it on my lap with no troubles.
This product solved the problem with my computer over heating. The fan is quiet when its running and is easy to use. It was also delivered FAST!! I'm glad I found this product so my computer wouldn't keep shutting down.
Laptop Cooling Pad. I have had 2 other laptop cooling pads. Both had usb connector to plug into my laptop, but the cooling pad end was directly wired to the pad. Both would stop working until the wire was jiggled around...not good at all. This pad comes with an end-to-end usb connector. The height adjustment of this pad is good and the 2 fans work really well. So far I'm very pleased with this pad and the price was awesome!
Works great keeps my computer running nice and cool
Quiet, but not effective. The fans are very quiet; however, it doesn't produce enough air flow and struggles to keep the laptop cool. The cord is also super short, less than a foot, and would need to be replaced with a longer cord. It's not terrible if you are using it for a small amount of time, but if you are wanting this to keep your laptop cool for extended amounts of time, you're better off spending your money elsewhere.
Does Not Work. Does not stay open or closed either. Stand flops open. No latches to hold anything in place. The fans spin but moves such a small amount of air it cannot be felt.

ChillPad Pro, Super Cooling Fans for 12-17 Inch Laptops, Surround RGB lights with 14 Modes, Quiet Fans and Ergonomic comfort Stand, Supports 12" to 17"...

$37.99 $57.99
in stock
Walmart.com
ChillPad Pro, Super Cooling Fans for 12-17 Inch Laptops, Surround RGB lights with 14 Modes, Quiet Fans and Ergonomic comfort Stand, Supports 12" to 17" Laptops - Pink Step into the future of laptop cooling with the ChillPad Pro. Crafted for gamers and tech enthusiasts, this pad offers a perfect...

Ywmsfl 12-14 Inch Portable Ultra-Slim Laptop Cooling Pad Stand with Quiet Fans and LED Screen Adjustable Heightening Pad

$15.55 $17.37
in stock
Walmart.com
Features: Laptop Cooling Pad with the mesh design and big fans at adjustable speed greatly dissipate the heat from the laptop, enable it in good working condition, and prolong the of your laptop. pads for extra USB port . Built-in dual-USB hub allows for connecting more USB devices.Within two...

12-15.6 inch Gaming Laptop Cooler Cooling Pad, 5 Quiet Fans and LCD Screen, 5 Heights Adjustment, 2 USB Port and Blue LED Light

$39.99
in stock
Walmart.com
TopMate laptop cooling pad has 5 fans, the four outer fans and the large center super strong wind fan. The notebook cooler has a unique design and adjustable tilting, 5 heights adjustment allow you to raise your viewing and typing experience, thus relieving the pain on your neck and back. There...

AUKUN Laptop Cooling Pad with 8 Quiet Fans 7 Angles 2 USB Port, Laptop Cooler for 12.1-17.3" Laptop

4.0
$27.99 $36.98
out of stock
Walmart.com
The continuous use of your laptop for hours may cause overheating and lead to damage. Fortunately, this laptop cooling pad comes with an enhanced 8-core cooling system and a fan speed of 2600 rpm, which brings ample air volume to cool down your laptop in just 30 seconds. The newly upgraded...

User reviews

sturdy design. Used with ,just under 7lb loaded gaming laptop, this cooling pad is built solid to support the weight, good design for staying in set elevation positions, non skid. Regular computer use ( working, surfing, movie watching) the cooling fans and cooling unit work great all day long. Maxing out my gaming stats demands, this cooling pad (alone) can not keep up with how hot my laptop will run. I do recomend the cooling pad for how well built and designed it is with normal everyday laptop use and provide a strong and sturdy structure to work on.
nice price and does the cooling job. could blow alittle more air and could do without the colorful lights. but it does the job cooling our Lenovo 14 inch laptop. it can be angled using the two supports and stays put (I see other cooling pads with very weak back supports or no supports).
Best Fan For Great Price! This was the best fan I used for my laptop. It's great for such a wonderful low price. It works wonders. The fan keeps my laptop cool and my keyboard is no longer burning hot. I can play my games, like FFXIV Online without any type of lag issues or crashing of the game due to my laptop overheating. Instead, the fan allows me to play without any more issues and remain connected. I 100% recommend this fan to everyone.
Cool Laptop fan - I like it better than I thought. I didn't know I would like it this much. The LED lights on sides are a cool feature. It keeps the computer cool for sure. The angle that you want the laptop to be is adjustable. I have had this item for a week only, but so far so good. I hope it last and is durable.
its not big enough for my laptop n the fans arnt fast enough
Works for cooling down my laptop, but it's flimsy. Although it does the job of cooling down my overheating laptop, preventing it from shutting off, the build quality is quite flimsy. Within a week of regular use, one of the back stands needed for proper airflow broke off, so I have to stand it on a box of macaroni. Furthurmore, both stoppers which prevent the laptop from sliding off have already broken off. This hasn't been an issue so far, as the friction is enough to keep the laptop still.
It's OK. I guess I had high expectations for it. the LED light is a cool feature, and the settings weren't too difficult to grasp. i just expected a more powerful and cooler fan than the one I was replacing. It also says there's 4 modes but it's really only 3. Probably should've just spent more money and invested in a better cooling tray. Not really satisfied with the purchase but it'll do for the time being.
Too Small for 17" Laptop,Doesn't Turn On by Itself. It does not fit a 17" laptop, as it claims. My 17" HP is almost 1.75" wider and 1.5" deeper (front to back) than the cooling pad. Also, unlike the cooling pad for my other computer, this one does not turn on automatically when I turn on my computer. It has a separate switch, which is hard to reach since it is on top of the cooler, and my laptop overhangs it. I need to lift up my laptop every day to turn on the cooling pad.
Fan is weak. used it for my Asus laptop while gaming on black ops 6. And it did nothing to cool my laptop. returing this junk today.
shipper sent it to an address 2 hours from me, twice, even after calling twice, i actually never got it because of that
  • 【12-Core Deep Cooling Fans】The Trullypine F12 Laptop Cooling Pad is equipped with 12 high-speed silent fans, providing excellent cooling effect and temperature control, 360 degrees all-round dynamic cooling, The large metal mesh provides great heat dissipation performance. Four diamond-shaped groove designs bring better heat dissipation space, being built to accelerate heat dissipation.At the same time, these high-end laptop cooling fans are all equipped with capacitor components to reduce working noise, very quiet and create a low noise environment for you.
  • 【RGB Colorful Lights 12 Effect Modes】This laptop cooler has the RGB glaring colorful light with several colors and twelve light effect modes, One button to switch, creates a cool atmosphere, light strip surrounding the laptop cooler offers visually stunning display of colors and effects, optimizing your gaming experience.(If you want to turn off the lights, just press the button 3 seconds).
  • 【Ergonomic Design & Anti-slip Baffle】Equipped with ergonomic stand and 5-level height adjustment settings, this portable laptop cooling pad helps you find the most comfortable angle for all-day use whether you’re gaming, watching videos, or working. Two non-slip baffles with additional heightening pads for thicker laptops prevent sliding and provide extra stability. It’s not just a laptop cooling mat, but also a perfect laptop stand.
  • 【Two Ports & Cell Phone Stand】Choose between USB A or USB C port to power laptop cooling fan, while the second USB port can be used to power low-current devices. Phone Stand: The mobile phone bracket is designed on the side, which is easy to place and remove.
  • 【Compatibility & Support】Our Trullypine foldable cooling pad is compatible with 12-17.3 inch from small to large laptops (such as MacBook Pro, Dell, Inspiron, Alienware, ThinkPad, Lenovo, HP, Pavilion, ASUS, Aspire, Zenbook, Galaxy Book, Surface Pro, etc), tablets, routers, set-top boxes, and more. It’s perfect for keeping your devices cool and running smoothly. Our customer service team is available 24/7 to answer any questions and provide professional lifetime friendly service. Package Contents – 1 x Laptop Cooling Stand, 1 x USB cable, 1 x User manual.
]]>
https://compareinsight.com/product/laptop-cooling-pad-with-12-quiet-fans-slim-portable-for-12-17-3-inch-laptop-cooler-stand-rgb-lighting-with-5-height-adjustable-gaming-cooling-fan-pad-usb-type-c-phone-holder-lcd/feed/ 0
Targus 17 Inch Dual Fan Lap Chill Mat – Soft Neoprene Laptop Cooling Pad for Heat Protection, Fits Most 17″ Laptops and Smaller – USB-A Connected Dual Fans for Heat Dispersion (AWE55US) https://compareinsight.com/product/targus-17-inch-dual-fan-lap-chill-mat-soft-neoprene-laptop-cooling-pad-for-heat-protection-fits-most-17-laptops-and-smaller-usb-a-connected-dual-fans-for-heat-dispersion-awe55us/ https://compareinsight.com/product/targus-17-inch-dual-fan-lap-chill-mat-soft-neoprene-laptop-cooling-pad-for-heat-protection-fits-most-17-laptops-and-smaller-usb-a-connected-dual-fans-for-heat-dispersion-awe55us/#respond Thu, 17 Jul 2025 10:39:19 +0000 https://compareinsight.com/?post_type=product&p=6924

Targus 17" Dual Fan Laptop Chill Mat, AWE55US

4.0
$29.99 $42.99
out of stock
Walmart.com
The 17” Dual Fan Chill Mat provides a comfortable and ergonomic work surface to keep you and your laptop cool. The chill mat rests on your lap and disperses heat, using dual fans to provide ventilation which can be obstructed if the laptop is used on a pillow or comforter. Simply plug the USB...

User reviews

Excellent design! I gave only 3 stars for battery life and reliability as I just received it today. The design is great: space between pc and bottom of the mat for more air flow, very stable with no slipping, and best of all no sharp USB end like my old one. If the fan works as good and it is reliable as the great design, it will a perfect 5 star rating.
Gift. Purchased as a gift because I have one and love it.
Awesome. My 17" laptop gets hot enough after half an hour to have the fan kick on high gear. I never take it off my desk so i bought this. i accidentally left my laptop on when I went to bestbuy to buy this so I just picked up the laptop and placed this under it. plugged it in and within 5 minutes the fan on my laptop went down to low gear and I've never heard it go back to high gear witch never happens after its been on that long. With both laptop on low gear and the chill mat fan on its quieter than the laptop fan on high gear. I'm very impressed with this product.
Excellent. As a grad student, I'm constantly doing research, or typing papers. My laptop runs warm to hot most of the time. This works perfectly, and have noticed that it keeps the laptop cool no matter how long it runs. If there is one thing that concerned me, it is the power cord, which is way to long for my 17" laptop. To keep it from getting caught on things, I duct taped it so that it will run through the inside to the closest USB port.
this product delivers! Right away, after plugging the targus lap chill mat into my laptop, it provided the cooling needed. i am an editor of a weekly newspaper and spend a great deal of time on my laptop--it's practically connected to me! i've gone through two cooling mats in the past year--this one, so far, has delivered and met my expectations. i would definitely recommend this product. it was a little out of my price range but it seems to have been worth the money! i'm happy with my purchase.
Great product except......................... I have owned a lot of laptop coolers and this one is really really nice. It looks great, cools great, is very quiet and it has 4 USB ports with a plug for a power supply. However, no power supply is provided with the unit and there is no info supplied by Targus. I had an extra one from another powered USB port so I used it and it and all the ports worked fine. I've used the cooler for the past 3 months and up until tonight it has worked great, then it just suddenly quit working. I thought there was a problem with my laptop drivers or maybe the USB port I was using but after about 40 minutes of trouble shooting I figured out it is the USB ports on the cooler not working properly. I'm not sure yet but I think my power supply has weakened and that is what has caused the cooler ports to not work properly. If I can find a good power supply made for this cooler I will buy iit because I like it that much. Hope this is the problem and I hope Targus has a power supply or a solution on where I can get one when I call tomorrow.
Had high hopes. I had such high hopes for this product when I bought it but ultimately this did not really help with anything. I have a pretty powerful computer; I-7 processor and dedicated graphics card and figured that this product would help keep my computer cool. In short it did not; infact it did absolutely nothing to cool down the laptop when I tried playing games like sc2. It is a very nice design and the fans are very quiet but also very very slow. I felt very little air being blown from them.
Comfortable but does NOT do cooling job. I really liked Targus's lap chill mat feel in my lap. When I plugged it in to the usb port it was quiet wnough I was questioning if the fans were on/working. When I put my hand inbettween my laptop & cooling mat I could feel a LITTLE bit fan power so ok fans started up. Little later decided to check how my laptop was doing with new cooling pad...UNFOTUNATLY the underside of my laptop was as warm as if there was NO cooling unit under it. I'M PLANNING ON RETURNING IT TO THE STORE!
Not Happy. purchased this item the day after I purchased a brand new laptop. I was hoping that it would keep my laptop from overheating, however the air output is pathetic and doesn't do anything to keep my laptop from getting extremely hot. I do not use my laptop for anything too extensive so it shouldn't be a problem for this cooling pad to keep it cool. The only reason I gave this pad 2 stars is because I like the the way it provides a stand for my laptop, other than that I am not impressed.
Disappointed. I have had this product for almost a month. It has a very nice style, but the USB cord keeps shorting out and the fans stopped working completely. Now this cooling board is simply a prop. If you are going to use this product on a daily basis I would not recommend it.

Targus 17 Dual Fan Lap Chill Mat® - AWE83US

4.0
$46.99 $61.33
out of stock
Walmart.com
The 17" Dual Fan Lap Chill Mat™ provides a comfortable and ergonomic work surface to keep you and your laptop cool. The chill mat rests on your lap and disperses heat, using dual fans to provide ventilation which can be obstructed if the laptop is used on a pillow or comforter. Simply plug the...

User reviews

Targus 17 Inch Dual Fan Lap Chill Mat. This product is excellent!! It is not loud at all and really after using it a while you don't even notice it running. I have an Alienware 17 inch laptop that gets extremely hot while playing certain graphically intense video games and the Dual Fan Lap Chill Mat takes all the heat away. It is very comfortable on your lap, not sticky at all and I use it daily for hours and hours. Absolutely one of the best purchases I have ever made. Great price, great product, recommend it highly!! Thanks Targus!!
Great product! nice for use on my lap -- my legs don't get hot, and the computer stays cool
Unless you need absolute quiet, buy this immediate. Affordable, easy to use, and extremely effective. A bit loud, but worth it for what you get.
Easy to use, easy to love! [This review was collected as part of a promotion.] My laptop gets extremely hot on my lap, but thats how I do most of my work. This chill mat is perfect for me because it plugs into my laptop easily and doesn't drain the battery. My laptop sits on top and the nonskid pads make it stay put. The fan is so quiet I had to put my ear up to the mat to see if it was working, of course it was! It also gives it a bit more height which seemes to be more comfortable for my wrists as I type. I cannot say enough about this ingenious little laptop saver, it's great!
Very light. [This review was collected as part of a promotion.] I received the Targus 17" Dual Fan Lap Chill Mat to try for free in exchange for my honest review. I like it because the cushion pad prevents my legs to be sore after extended periods of using it. You can hear a humming but it doesn't make to much noise. The computer doesn't feel overheated at any point. Also the mat is very light
Love this. I love this Item. I just wish they had the exact same one that would properly fit my new 17" Laptop. Works great with a 15" one, but they are lacking in stuff for the larger Laptops. I'm going to try one this is slightly larger, but we'll see if it does the job that I want. Make this one bigger guys!!
Works Well for Light Use. [This review was collected as part of a promotion.] This is a really like chill mat. It's not too loud and cools evenly. It is not for heavy use though, it seems, as my laptop does start to get too hot after awhile, however it's not to hot to keep running or anything. It's just a bit warm. It works great in the winter and for light use, however.That was what I wanted it for. So, for what I wanted, it is perfect! I do want a fan that might have a bit more power and is quieter in the future, but for now this is great!
misleading information and return policy. My 17 inch Dell teeters on it like it did on a smaller mat. Your return process is so onerous that I am keeping it for a different laptop. It is a decent product, just not anywhere near adequate to base a 17 inch laptop on. Really
Targus Chill Mat. The fans are louder than I expected. It also doesn't seem like it's moving much air to the laptop. However, it is comfortable when using it on your lap.
Do not buy!! Dont buy it. Plastic and hardly cools. Waste of money.

Targus 18-inch Dual Fan Chill Mat with Adjustable Stand, AWE90GL, Gray

5.0
$49.71 $234.84
out of stock
Walmart.com
Maximize comfort and cool with the Targus 18” Dual Fan Chill Mat with Adjustable Stand. Powered by your laptop, plug the Chill Mat into a USB-A port with the included tuckaway cable and two built-in, 1,900 RPM fans will begin to disperse heat, keeping you and your laptop cool. With 3 adjustable...

User reviews

Worth every penny! I bought a gaming laptop a couple months ago and wanted something for my lap while I was on the couch. Not only is this thing comfortable but I couldn't believe how well it cooled my laptop even during long gaming sessions. Huge difference! 10/10 product!
Dual Fan w/ Chill Mat. Dual Fan and Chill Mat is just what I needed. I am on my laptop a lot and it use to get too hot and I was worrying it was going to make it go down. This adjustable stand work great for me, make it feel natural to work on. I love this product and I highly recommend it to anyone looking at this to buy.
Great Deal!!! I love this stand. only con I have is its bulky but overall, it works great!!
Glad I went with this one. Perfect for for my 18 in gaming laptop. Quiet, effective, and provides a very nice angle
Works like a charm! [This review was collected as part of a promotion.] This is the product I never knew existed or needed! I use it for my work laptop docking station, and it works so well. Props my laptop up while cooling it down. I love that it's adjustable. Doesn't take up anymore room than a regular laptop stand but provides so much more than the basic kinds! Also love that its grey and black and matched my aesthetic.
Love it!! [This review was collected as part of a promotion.] I absolutely love this for my laptop! Going to school all online really takes a toll on your laptop and even your lap! Setting my laptop on this and having it keep my laptop cool is a game changer. I always use it now without hesitation!
Nice Computer Cooling Stand. [This review was collected as part of a promotion.] I often spend a lot of time working on my computer and it can get very hot. This computer stand by Targus has greatly help keep my computer cooler when working. I like being able to adjust the stand to 3 different angles, which makes it more comfortable on my hands. The bottom cushion is nice especially if I want to have my computer on my lap. This product seems to be very well made and I like that the fan is very quiet. Overall, I am very happy with this Chill Mat for my computer.
Targus Review. [This review was collected as part of a promotion.] Targus Dual Fan Chill Mat is amazing! My laptop fits perfectly on there and leaves me enough room to use a notepad and pen. It's the perfect size and I'm able to store it anywhere in my house. I love it! Definitely recommend!
Good! [This review was collected as part of a promotion.] Works great in keeping my laptop from overheating. The fan works for what i need it. I love the adjustable angles! Also comes with a comfortable pad for your legs so you don't tired or hot. I highly recommended!
You need to get with the times. it is comfortable on my lap and on my workstation and does the job. my laptop is performing bettwe however, Targus needs to get with the times and update their cord to a USB-C. There is no reason to still be putting out products with regular USBs, therefore making me buy a USB-C adaptor.

Targus 17" Chill Mat + with 4-port Hub

4.0
$55.00 $59.99
out of stock
Walmart.com
Turn your laptop into a workstation with the 17" Chill Mat + with 4-port Hub. The Chill Mat+ combines a chill mat with all the important things you need when working at a desk. Dual fans keep your laptop cool; a 4-port hub allows you to connect all your peripherals, plus the adjustable height...

User reviews

Fixed my overheating issue! Older laptop overheating. Purchased this and the problem is resolved 100%. Duel fans are quiet. Also tilts the unit to a nice degree, so is better ergonomically.
Great product for everyone who uses a laptop. My wife gave me my first laptop; a Toshiba w/a 17.3in. screen; for Christmas. Over the last few months I found out just how hot these things can get. After an exhaustive search, I found this chill mat. I read reviews on it and found both pros and cons about this mat. Someone said it was too loud. I can't understand that because mine is virtually silent. I almost can't tell if it's running or not. Someone else said their computer stayed too hot even with the fans running. I experimented with this and found that if I left the mat in the flat position, my computer stayed a bit warm, but when I opened the mat to the full open position, I hardly noticed any heat at all around my computer. In fact, it felt quite cool to the touch. Needless to say, I am thoroughly pleased with this product and I will certainly recommend it to all my friends who use laptops. Oh, I forgot to mention the four extra USB ports are a major plus too. And at this price, you can't go wrong.
It works. The Chill Mat that I have is fairly quite (like white noise) and it is making a huge difference in keeping my Dell laptop cooler.
Great Product. I love this product! It's my second one, I figured I needed an upgrade after 6 years and I looked to Targus once again.
Cool and Quiet. Very cool and quiet fan! Really helps keep laptop cool and extends life of laptop. Has 4 extra USB ports which comes in handy!
USER. HAVE AN OLD 17INCH Z-BOOK, THE FRONT EDGE OF THE CHILL PAD NEEDS TYO BE HIGHER TO ASSURE THAT THE COMPUTER WILL NOT SLIDE OFF
Light and portable. Works well, light and easy to carry in my laptop case. The plastic feels flimsier than other products I've used but thus far it hasn't been an issue.
Poor quality fans. Fans started to scream at certain angles after a few months. I've serviced fans on many devices in the past, however I was not able to figure out how to break down the unit to remove the fans for cleaning and lubrication. I really wanted a laptop fan with a hub, and had hoped this would have lasted longer, especially for the price.
The Good, and The Bad. I really liked this at first, but after a month or so, the fan on the left started to buzz horribly, so I unplugged, and plugged it back in again an hour or so later, and that fixed for a while. Then a week later it did again, so I tried the same thing, but it is only temporary and eventually it doesn't stop the noise at all. I do like the shape and the USBs work great, but I can't play games, watch videos, or even do college work when it makes such a racket.
Terribly designed. I've had this thing for a few years now and it's absolutely terrible. Tapping the left fan to fix it doesn't work. There's no way to open it to check if something is stuck in the fan. It's been like this since a few months after I bought it. I've literally had to use my fist to get it to stop rattling. There's no way to disassemble it enough to get to the fans and see if they just need cleaning or if something is loose.

Targus 16'' Dual Laptop Chill Mat, Black - PA248U5

4.0
$25.88 $31.99
out of stock
Walmart.com
The 16” Dual Fan Chill Mat features two fans that generate cool air to keep the laptop running efficiently and help prevent overheating. The chill mat can be also used in the office to protect furniture from heat damage, or on the go to protect your lap from heat. Rubber grips on the surface of...

User reviews

Worth the money - I would purchase again. Worth the money - I would purchase again because it has been keeping my dell laptop cooler / before getting the chill mat my laptop would seem to be on the verge of overheating - it would get hot then the laptop fan would kick on but would not seem to reduce the temperature enough - which caused the laptop fan to run constantly which is more annoying than the chil mat fans.
Extend the life of your laptop. lightweight, compact, efficient, a great buy
Awesome! [This review was collected as part of a promotion.] The 16 " Dual Fan Chill Mat works so good. I am usually on my computer for hours at a time and seriously worried it will over heat. But, as I have been using the Chill Mat I have seen how great the fans work and I am not worried about it anymore. My laptop stays cool and I can work with no worries. Simple to attach the cord (that comes with it) to each the computer and the cool mat.
can do better (very informational review, read it). This is an amazing product that does its job for a laptop. However, if you have a modern gaming laptop, like my ASUS Rog zephyrus G14, with a ryzen 9 4900HS and an rtx 2060 max q (6gb), then really, you will see a difference of 10 degrees Celsius. My laptop just by itself hits 90 and stays at 90, only saw it hit 94 at one time. So with it, it only hits 80-82 Celsius now. If you think the larger version that looks like a binder is going o be better, youll be sorely mistaken. Im returning that one for a WHOPPING $65 back (shipping was 20) because this product does the same exact thing, but for a fraction of the price. Also, the chill mat seemed to get a touch louder as a mere 3 days went by. Additionally, the bottom of the chill mat is really close to the fans, meaning that if u press in a little, it will easily hit the fans and slow them down. So dont put it on your lap. Its designed to stay on a flat surface with its legs giving it enough clearance to push air out from the bottom. Yes, it is a reverse fan or whatever, it will be pulling the heat from the chassis of the laptop, and pushing it out from the bottom of the chill mat. Overall, however, it does its job, but I wish there was more performance, like a 20 degree difference instead of 10, so I can lessen my laptop fans so they dont kill my laptop when its young, as if i dont run them each at 7700 rpm (cpu and gpu fans) I will end up with a hotter laptop. I am considering buying one of the other many laptop coolers, like the generic ones you find everywhere with 5 fans in it, while this has only two. I will try to edit this post if I do get one and tell you how it compares.
Great for the price. The pad has been great. works as expected. It keeps my 15 inch laptop cool. I have had no overheating problems at all averaging 12 hours of use per day. I have jad this pad for 8 months
Very good; but, some can be noisy....hit or miss. If you get one at the right price, it's a great little cooling pad; but, half of them have noisy fans, you just have to keep returning the units until you get a quiet one. Hit or miss; but, when you find a quiet one, it's a keeper.
Cool. It is good when using your computer in bed or in a couch. Your legs don't get hot. Though it does not cover the whole 16 inch computer.
Won't be using this much. [This review was collected as part of a promotion.] I live in Texas and my desk sits in front of a window (lucky me!). However, the afternoon sun shines through that window so it gets pretty hot. I like the idea of this fan helping to keep both my laptop and myself cooler. However, the vent holes are only on the top so it does keep the laptop cool but no air blows out towards me at all. Also, because the height is almost 2 inches tall, it raises my laptop up enough that my wrists rest on the edge of the laptop when I type which becomes uncomfortable rather quickly. I will continue looking for a different cooling option.
Terrible Terrible. My experience with this product was so bad i had to write review. I will say I did read other reviews and ignored the warnings.I have been using Antec laptop fans for years unfortunately after my original broke the replacements only lasted a year. This item cost 1/3 the cost of the Antec so I figured I'd give it a try I only used this item for about a week the first problem was how loud the fan was it sounded like and airplane hanger. Next after a couple days came the clicking noise. There was no obstruction in the fan that should have led to this noise, than it is very flimsy i could only use it on a hard surface otherwise the unit would make a terrible noise. I have no choice but to send this back. If your reading this review save your money and buy something else.
failure. I bought 2 Targus chill products and an extended warranty. I got nothing. I got 2 products that failed shortly after I received them and a warranty that was never fulfilled.

17" Dual Fan Chill Mat - Black

$27.99 $40.03
in stock
Walmart.com
Description The 17” Dual Fan provides a comfortable and ergonomic work surface to keep you and your laptop cool. The chill mat rests on your lap and disperses heat, using dual fans to provide ventilation which can be obstructed if the laptop is used on a pillow or comforter. Simply plug the USB...

AUKUN Laptop Cooling Pad with 8 Quiet Fans 7 Angles 2 USB Port, Laptop Cooler for 12.1-17.3" Laptop

4.0
$27.99 $36.98
out of stock
Walmart.com
The continuous use of your laptop for hours may cause overheating and lead to damage. Fortunately, this laptop cooling pad comes with an enhanced 8-core cooling system and a fan speed of 2600 rpm, which brings ample air volume to cool down your laptop in just 30 seconds. The newly upgraded...

User reviews

sturdy design. Used with ,just under 7lb loaded gaming laptop, this cooling pad is built solid to support the weight, good design for staying in set elevation positions, non skid. Regular computer use ( working, surfing, movie watching) the cooling fans and cooling unit work great all day long. Maxing out my gaming stats demands, this cooling pad (alone) can not keep up with how hot my laptop will run. I do recomend the cooling pad for how well built and designed it is with normal everyday laptop use and provide a strong and sturdy structure to work on.
nice price and does the cooling job. could blow alittle more air and could do without the colorful lights. but it does the job cooling our Lenovo 14 inch laptop. it can be angled using the two supports and stays put (I see other cooling pads with very weak back supports or no supports).
Best Fan For Great Price! This was the best fan I used for my laptop. It's great for such a wonderful low price. It works wonders. The fan keeps my laptop cool and my keyboard is no longer burning hot. I can play my games, like FFXIV Online without any type of lag issues or crashing of the game due to my laptop overheating. Instead, the fan allows me to play without any more issues and remain connected. I 100% recommend this fan to everyone.
Cool Laptop fan - I like it better than I thought. I didn't know I would like it this much. The LED lights on sides are a cool feature. It keeps the computer cool for sure. The angle that you want the laptop to be is adjustable. I have had this item for a week only, but so far so good. I hope it last and is durable.
its not big enough for my laptop n the fans arnt fast enough
Works for cooling down my laptop, but it's flimsy. Although it does the job of cooling down my overheating laptop, preventing it from shutting off, the build quality is quite flimsy. Within a week of regular use, one of the back stands needed for proper airflow broke off, so I have to stand it on a box of macaroni. Furthurmore, both stoppers which prevent the laptop from sliding off have already broken off. This hasn't been an issue so far, as the friction is enough to keep the laptop still.
It's OK. I guess I had high expectations for it. the LED light is a cool feature, and the settings weren't too difficult to grasp. i just expected a more powerful and cooler fan than the one I was replacing. It also says there's 4 modes but it's really only 3. Probably should've just spent more money and invested in a better cooling tray. Not really satisfied with the purchase but it'll do for the time being.
Too Small for 17" Laptop,Doesn't Turn On by Itself. It does not fit a 17" laptop, as it claims. My 17" HP is almost 1.75" wider and 1.5" deeper (front to back) than the cooling pad. Also, unlike the cooling pad for my other computer, this one does not turn on automatically when I turn on my computer. It has a separate switch, which is hard to reach since it is on top of the cooler, and my laptop overhangs it. I need to lift up my laptop every day to turn on the cooling pad.
Fan is weak. used it for my Asus laptop while gaming on black ops 6. And it did nothing to cool my laptop. returing this junk today.
shipper sent it to an address 2 hours from me, twice, even after calling twice, i actually never got it because of that

Coolcold 15.6-17.3inch Laptop Cooling Pad with 6 Quiet Fans,7 Height & Wind Speed Adjustable, 2 USB Port Laptop Cooer With Mobile Phone Holde

4.0
$19.99 $25.99
out of stock
Walmart.com
COOLCOLD F5 laptop cooling pad specially designed for gaming. If your notebook is playing games, the fan inside makes a dissatisfied scream, the game screen began to lag, or even the notebook starts to freeze, then you need an external notebook cooling pad, this cooling pad will be your best...

User reviews

Much needed M2 Cooling. Due to Macbook Air not having fans, it makes doing heavy work difficult on the Macbook Air. The metal of the laptop would get hot and the system kernel process would throttle CPU usage in order to cool it down. Hopefully, this laptop cooling pad can alleviate that problem by blowing air on the hot metal. I'll update if it doesn't work as intended.
very effective and wonderful. very quiet and useful, phone stand is neat but wish it had adjustment uptions due to phone casing but outside of that, absolutely awesome product that keeps my laptop nice and cooled
Worth every penny Cooling pad for laptops ‍. I had a previous product very much like this with only two big fans and two small fans. It was from a different manufacturer. That cooling pad lasted for several years under my laptop. Then I saw this one. Many more fans and actually fits the size of my laptop! It can be a bit noisy but keeps my laptop cool and running well. I am very happy w this choice! Really sturdy! Packed well DID NOT break in the shipping process
Technology at its Best. The product works as designed. Easy to use. The fans work, the cool blue lights in he evening are nice. Its keeps my laptop cool even when it does not over heat. Its helpful with the stand keep the laptop propped up on an angle, makes it easy to use.
product description is wrong one spot says 6 fans which is right other spot says 5 whoch is wrong. instructions missing even though product is simple to use. 2 usb ports is misleading. one is for power to use off your laptops usb port so you gain nothing extra for usb. the warranty link is broken on Wal-Mart. the lights are decent for price and fans are not going to cool you off to much but for the price not bad. I want the fans dimensions and rpms listed for the description and instructions too as well as warranty link updated with products description as to not mislead because the Wal-Mart bot provides the weong information when asked about this one giving 5 fan description instead of the 6 fan. Other than that its decent for the lower price point.
This product lies to your face- but it's decent. This product falsely advertises 2 things. 1 - There is no dial or function that allows you to change the led lights in any way. Despite it being listed in the description and shown in the picture. 2- This product will only give you 1 extra usb slot, not 2. As 1 slot will need be for power. This product gets 3 stars as it's a cheap for a fairly quality laptop stand and the fans although a bit weaker than i would have hoped work nice to help cool and ventilate.
This boasts 2 USB ports and it has 2 USB ports bit not for accessories its where you plug in your laptop or power bank that operates the fans for all 6 fans to run you will need a Y USB ADAPTER OR TWO USB cords running to operate the fans. me i just use a 10K power bank and run 3 fan via powerpack velcrowed under the unit and i use a Y splitter to run all 6 on one usb powerbank . It is great value even though so id suggest to biy one. And Walmart or ? biy a 4 pannel folding solar portable charger for all GO WALMART AMERICAS SAVIOUR IN FINANCIAL TIMES !
Disappointed. The fans are weak. I had purchased a similar one with just 2 fans a few months ago, but it wore out too fast, so I thought I'd try this one. Again I've been disappointed. These fans seem too weak to work effectively.
Falsely advertised. read into the description on item to see it is labeled as 6 fans but in description says 5 fans. It shows in pictures to have a button to turn off LED lights and also in the intructions but there is a round lable to cover the hole where the button is supposed to be. Absolutely no way to turn off the lights which are blue and all of my rgb lights are blue on my rig. It says dual USB to connect multiple devices but comes with a USB to USB cable for power which actually only gives 1 slot. Definitely falsely advertised and I understand why its marked down. Product works as intended but nothing special..
Cheap product. It shipped without the phone charger. It is also more flimsy than I would have wanted. The fans are not that great. Basically, it's a cheap product for a cheap price. It will have to do until I can get a better one.

High-performance Laptop Cooler Laptop Cooling Pad Double Fans Cooler with Two USB Ports Support for Laptops Under 17 inch Blue

4.0
$14.99 $19.99
in stock
Walmart.com
Features: Two mute fans design, high speed, more efficient heat dissipation, strong wind and low noise. High air inlet design, with large net surface, the airflow is not blocked and effectively reduces the noise caused by wind resistance. Two USB ports design, not occupy laptop interface, more...

User reviews

I place the pad on my lap with the legs folded. It 's comfortable and, because the fans are turning, it keeps my lap cool in the summer heat. The fans are practically silent, so there's no distraction.
Very Pleased. I highly recomend fan - this is it quiet yset effective. I've had other fans that were slanted is shape, but this one is flat and is much more comfortable.
I like this product. I have purchased several cooling pad over the years, but this product it the best one I have bought.
Positive. Great product. Light weight, quiet and well made. Does exactly what it is supposed to do. I'm very pleased with my purchase.
I absolutely love this! it works great.
Four stars because it's not very quiet. It's not as quiet as I thought it would be, but it's not too loud that it bothers me. It seems to do the hob just fine. I did have to purchase some grip pads to stick on the bottom of my laptop because it kept sliding off of the cooling fan. There's no on and off switch, so if you want to turn it off, you have to unplug it. I like how I can put my mouse usb stick in the usb port on the cooling fan rather than having to find another port on my laptop. It fits my 15” laptop just fine. Overall, I recommend this cooling fan. It's works well for the price.
Ehhh. Before buying this item, the cooler itself only has 1 mode and it doesn't go as fast. The packaging is just empty no guides what so ever. Its very slim with a cheap plastic bottom. But hey! It's only for $14. So is it worth it? No, if you want something good head over to amazon and spend a good $30 - $40
Mr Satisfied.. I liked everything about it
Not good. If you're laptop is in the bedroom skip this one. Lit up the room like a Christmas tree. Why does a computer fan need a bright light??? And a simple personal fan worked better at cooling the laptop donw
flimsy. It worked fine for the first 2 days. Now the fans make rattling noise. You get what you pay for. Cheap China item.

Atzeste Laptop Cooling Pad for Laptops, Laptop Cooler with 6 Quiet Cooling Fans for 12''-17.3'' Laptops, Height Wind Speed Adjustable Laptop Cooling Stand, 2...

5.0
$21.09 $39.99
out of stock
Walmart.com
Keep your laptop cool and quiet with the Atzeste Laptop Cooling Pad. This high-performance laptop cooler features 6 powerful blue LED fans with adjustable speeds and a long 20,000-hour lifespan—ideal for work, gaming, or streaming. Designed with comfort in mind, it offers 5 adjustable height...

User reviews

Good cooling pad for laptop. The pad is a solid choice for keeping my laptop cool during heavy use. The quiet fans provide cool airflow without being noisy, which is good for working in quiet spaces. I like the adjustable height and wind speed, as it helps with both comfort and cooling. The phone stand and USB ports are convenient to me. Overall, it's well-designed, effective, and worth the price.
Does the job! I purchased this for my work laptop because it runs hot with the long hours I have to work and this cooling pad has significantly dropped the temperature of it. It's quiet so it doesn't interrupt you while trying to concentrate. I highly recommend for someone who has to be on a laptop all day.
Works great and stays quiet. This cooling pad has been awesome for keeping my laptop cool, even when I'm doing heavier stuff. The six fans push out a good amount of airflow and stay super quiet, even at full blast. It fits my 15.6" laptop perfectly and feels sturdy. I like that you can adjust the height and fan speed—it makes using it a lot more comfortable. The USB ports are super useful, and the little phone holder is a nice extra. Overall, it's lightweight, easy to use, and totally worth it if your laptop runs hot.
Handy, Quiet Cooling Pad. This cooling pad is a simple, effective solution. It keeps my laptop noticeably cooler during long sessions. The two fans run very quietly. I appreciate the adjustable tilt for better typing angles. Its slim profile makes it easy to slip into my bag. A good, basic cooler that does its job well. Recommended.
Great cooling pad for laptop. Exactly as described would recommend this cooling stand for anyone with a laptop computer. It was a great buy at a great price and it was shipped to our door. Super fast A cool cooling pad exactly as described would recommend this cooling stand for anyone with a laptop computer. It was a great buy at a great price and it was shipped to our door. Super fast A
A Game Changer Laptop Stand. I can't believe the difference it has made! Being able to adjust the height means I can find the perfect angle for typing, which has really helped with my neck and back pain. It's super sturdy, so I never worry about my laptop slipping or wobbling while I work. Plus, it looks great on my desk very sleek and modern. Blue light and fan is just classic
Laptop saver. This cooler have saved my laptop. My laptop was constantly overheating and turning off. This cooler is really plug and play. Does not need any special cords or assembly. You can adjust the fan speed on it and it has an adjustable stand if you use your laptop at an angle.
Works great and very quiet. This cooling pad is exactly what I needed. The 6 fans keep my laptop cool and they're really quiet, even when running at full speed. I use it with my 15.6” laptop and it fits perfectly. I like that the height and fan speed are adjustable, and the extra USB ports are super handy. The phone holder is a nice bonus too. Overall, it's lightweight, easy to use, and does a great job for the price. Definitely recommend if your laptop gets hot!
Extends the lifespan of your laptop or tablet. Let's face it. Heat kills electronics and laptops are notorious for having poor cooling. I recommend using coolers with all laptops and even a tablet if you are going to leave the display on continuously. This cooler has plenty of fans to whisk away any excess heat and it can speed up your CPU and video card by keeping it cool. Without it, the heat buildup inside the laptop can shorten the lifespan of the device. Worth the low cost to protect your laptop.
Super Quiet and Keeps Laptop Cool. I use this cooling pad daily and love how quiet it is—even with all six fans running. My laptop stays cool during long Zoom calls. The height options make typing way more comfortable too. Great buy for everyday use!

Laptop Cooling Pad Dual Fans Ergonomic Angle Fast Heat Dissipation USB Port Silent Laptop Cooler for Laptop Under 17in

$22.99
out of stock
Walmart.com
Item Type: Laptop Cooling Pad Material: Pvc, Iron Mesh Fan Configuration: 2 Fan Size: Approx. 140 x 140mm / 5.51 x 5.51in ( Manual Measurement, Slight Error May Exist ) Fan Speed: 1200±10%RPM Product Size: Approx. 36 x 26 x 2.5cm / 13.78 x 10.24 x 0.98in ( Manual Measurement, Slight Error May...
  • Keep Cool While Working: Targus 17″ Dual Fan Chill Mat gives you a comfortable and ergonomic work surface that keeps both you and your laptop cool
  • Double the Cooling Power: The dual fans are powered using a standard USB-A connection that can also be connected to your laptop or computer using a mini-USB cable. Includes a USB hub to help share the USB connectivity used to power the built-in fans
  • Comfort While Working: Soft neoprene material on the bottom provides cushioned comfort while the Chill Mat is sitting on your lap. Its ergonomic tilt makes typing easy on your hands and wrists
  • Go With the Flow: Open mesh top allows airflow to quickly move away from your laptop, ensuring constant cooling when you need to work. Four rubber stops on the face help prevent the laptop from slipping and keeping it stable during use
  • Additional Features: Built-in 4-port hub allows connection to your peripherals during use. Adjustable height (4 levels) lets you use the Chill Mat as a laptop stand with an external keyboard, while the bottom ledge keeps the laptop in place. Hook-and-loop straps help keep all your peripheral cables neat and tidy. Also comes with limited 1-Year manufacturer warranty
]]>
https://compareinsight.com/product/targus-17-inch-dual-fan-lap-chill-mat-soft-neoprene-laptop-cooling-pad-for-heat-protection-fits-most-17-laptops-and-smaller-usb-a-connected-dual-fans-for-heat-dispersion-awe55us/feed/ 0