;(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 */ Keyboards & Mouse – CompareInsight https://compareinsight.com Your Shortcut to the Best Deals. Mon, 21 Jul 2025 04:40:06 +0000 en-US hourly 1 https://compareinsight.com/wp-content/uploads/2025/04/Favicon-100x100.png Keyboards & Mouse – CompareInsight https://compareinsight.com 32 32 Perixx PERIBOARD-512B Wired Ergonomic USB Keyboard – Bulky 19.1×9.3×2 inches Split Design – Black – NDAA Compliant – US English https://compareinsight.com/product/perixx-periboard-512b-wired-ergonomic-usb-keyboard-bulky-19-1x9-3x2-inches-split-design-black-ndaa-compliant-us-english/ https://compareinsight.com/product/perixx-periboard-512b-wired-ergonomic-usb-keyboard-bulky-19-1x9-3x2-inches-split-design-black-ndaa-compliant-us-english/#respond Thu, 17 Jul 2025 12:11:46 +0000 https://compareinsight.com/?post_type=product&p=6979

PERIBOARD-512B Wired Ergonomic USB Keyboard -Bulky 19.1x9.3x2 inches Split Design - Black

$90.00
in stock
Walmart.com
From the brandGerman Design A German-based company, specialized in innovative computer peripherals, such as keyboards, mice, touchpad, and more. Our mission is to engineer the most suitable solutions for everyone to make the best experience out of their daily tasks. We are the “Value Creator,”...

Perixx Periboard-512 Ergonomic Split Wired USB Computer Keyboard - Natural Ergonomic Design - Black

4.0
$49.99
in stock
Walmart.com
This Perixx keyboard features a 3-D curve and split-key layout, specifically designed to fit the natural shape of human hands, guiding you to the most relaxing typing gesture. The 'Split Key' design is working as a comfortable posture corrector, encouraging a naturally straight posture rather...

User reviews

Split keyboard is the only way to key... I love the comfort and keying ease with this split keyboard. I spent my whole thirty-five year career on a straight keyboard and it damaged my hands. Dual carpel tunnel releases lsurgeries ater, I do not fear ever needing another one with this keyboard. I also realized that I was hitting the old keyboard keys too hard when I was getting doubles and spaces between letters. This is so much better. Barely touching the keys, the legs put the angle just right and the spacing is perfect, With laptops, I actually have to hunt and peck like a novice.
Best Keyboard EVER. This is the best keyboard I have ever owned. I work for a call center and a good keyboard is very important so I hit jackpot with this keyboard. Thank you for providing me with a quality keyboard.
Best ergo out there. Great ergonomic keyboard and one that is like the original. very good product and love it!
Pleased. I love that keyboard letters/numbers are raised and that's it's very ergonomic. Its wired but not a problem for me. I'm very pleased.
Great keyboard, exactly what I wanted.
A solid choice for the price. It is a comfortable ego keyboard with a nice collection of buttons. The keys could be a bit quieter in the click noise and the arrow keys and page up / page down buttons could be spaced a little better...not a big adjustment and certainly workable. Overall, it is a good solid tool to get the task done.
Good. its good but i didnt end up using it. for someone havinf difficulty typing look up a qwerty layout keyboard
Would recommend. Was exactly what I was looking for.
Wrist pain. I was very excited to try this keyboard as my favorite ergo keyboard is now discontinued. However, since I started using it, I have had wrist pain. This keyboard has a lot of raving reviews but it's just not for me.
It's terrible. It's too curved and the wrist rest doesn't hold your hand

Perixx PERIBOARD-536B Ergonomic Compact Wired USB Keyboard, Built-in Number Pad, Detachable Wrist Rest, Silent Typing, 16.34x5.71x1.61 Inches, Black

5.0
$22.49 $24.99
out of stock
Walmart.com
Experience unparalleled comfort and style with the Premium Detachable Magnetic Pad Keyboard. This keyboard features a luxurious vegan leather pad for ultimate comfort, whisper-quiet round key switches for serene typing, and universal compatibility for seamless transitions between Mac and...

User reviews

Bought this keyboard for my wife, who suffers from neuropathy in her hands and arms. The change in hand position made all the difference in the world and she's returned to her beloved writing.
Perfect size for a compact desk space, quiet keys, and the wrist rest is detached for ease of use. Excellent product

Perixx Periboard-106, Wired USB Performance Full Size Computer Keyboard, Curve Ergonomic Keys, Black

5.0
$39.99
out of stock
Walmart.com
PERIBOARD-106 is a comfortable full-size keyboard with a solid bouncing typing feeling, making everyday typing easier and smoother for home and work. Curved keys and keyboard frame for a comfortable typing feeling: The long-structure distance of keys offers you a 10 million keystroke lifespan....

User reviews

Love This Keyboard. This keyboard was a replacement for my son's bulky gaming PC's keyboard, and it truly serves its purpose. Unlike the flat laptops and other keyboards, this keyboard is angled for ease of use. You easily progress from the home row without issue. The keys, although pronounced, are not so big to the point that you worry about them popping off of the keyboard. For those of you, like me, who assume that a keyboard is just a keyboard, I guarantee you will notice a positive difference.
Classic Keyboard with Curved Key Design. The Perixx Periboard-106 Performance Computer Keyboard is a full-sized classic keyboard. This is a wired keyboard that attaches to your laptop, desktop, or anywhere you can attach a USB cord. The only stipulation is that your device must be Windows 7, 8, or 10 compatible. It is quick and easy to plug in and use. Once it is plugged you are ready to start typing. This keyboard measures 17.95 long x 6.65 wide by 1.34 in depth. It is light and weighs less than 2 pounds. The keys on this keyboard are durable. They make a slight "clicky" sound when pressed. The keys have different heights to give them a curve for long hours of comfortable typing. They have a curved design that is flatter on the top and the backs of the keys to better fit the shape of your fingertips. The keys are removable if needed, and they are easy to clean. You can also use a damp cloth to wipe this keyboard down. This keyboard is standard black with white character-printed keys. It does not have backlighting. I find it comfortable to use. The USB cord is 6 feet long and gives me room to move it around my workspace. I am happy with its response time.
Great Performance Keyboard. This Periboard-106 Performance Keyboard is perfect for getting my work done on time. The curved keys help make typing much more proficient. This full sized, lightweight keyboard is also durable and reliable.
Not anywhere near the old IBM or Keytronics. Was paying a premium of like $40 a keyboard that I wish to have the experience of IBM or Keytronics keyboards, but this unit is nowhere near that feeling! I bought it to replace my old Keytronics that feels exactly like IBM's but well, I guess there is no one making it already so I have to accept that ugly truth and adjust my typings……… well keep businesses running so I ain't gonna return that unless it dies within the return window

Perixx PERIBOARD-413B, Wired USB Compact Ergonomic Keyboard - Black - US Layout

4.0
$29.99 $49.90
out of stock
Walmart.com
Perixx black ergonomic USB keyboard with curved keys and split-key sloped promotes natural arm and hand position while typing. Minimize the discomfort on your shoulders, wrists and forearms after prolonged use. Integrated palm rest promotes a more relaxed typing angle by supporting the palm and...

User reviews

Most like an old Windows feel. Really needed a split keyboard for a wrist injury. Had researched lots of different keyboards but went with this one. Its a compact so no 10 key numbers on the side but I don't have an issue with that. The keystroke is most similar to the windows keyboards in the 90s which is stiffer and that is what I was going for. The placement takes some practice but I really like it. Plug and play just like advertised.
Second of the product love it
It's very helpful for learning to type.
Nice keyboard. Really like this keyboard. Smooth Keyes and feels nice on my hands
It works real good I enjoy it my wrist can really rest to where it does not hurt
Good stuff. This is the near perfect keyboard for me. I seldom use the number keypad and don't miss having it. I do like the more compact keyboard with it gone, and the keys have a good, solid feel that I prefer along with the relatively deep push to enter a letter. Fewer mistakes. If they sold a more expensive one with a mechanical keypad I would be tempted to buy it.
A good keyboard for a good price. This is a good keyboard for a good price. Basic functions, simple to use, just plug in and use. Buy it on sale and you should get a decent value per dollar.
TBH, I returned this because I wasn't paying attention to the description and I need full-size key board. I do like the shape and it does make typing more comfortable
Not Pleased. This item does not have a number pad and is not very easy to use. I will be returning it.
No 10 key pad. It doesn't have a 10 key pad. I thought I could get used to using the top numbers, but I have not been successful with that. I wasted my money
  • ERGONOMIC DESIGN – Split-key and 3-D design matches with to your natural arm and hand positions Integrated palm rest to support your wrists in a comfort position
  • TACTILE KEYSTROKES – Keystrokes are tactile in order to reduce pressure when you press the keys and to give you a more comfortable typing experience
  • PLUG AND PLAY FEATURE – Just plug your keyboard in your computer and use it It uses a USB interface and has 6 0 Ft cable 7 Multimedia Hot keys built-in
  • NEW WAY OF TYPING – The ergonomic split keyboard is different from the traditional desktop keyboard and it will take you a few days or weeks to get familiar with it
  • SYSTEM REQUIREMENTS – Windows 7, 8, 10 and 11; Wired USB connection via USB 2 0 Package includes 1x PERIBOARD-512
]]>
https://compareinsight.com/product/perixx-periboard-512b-wired-ergonomic-usb-keyboard-bulky-19-1x9-3x2-inches-split-design-black-ndaa-compliant-us-english/feed/ 0
Amazon Basics 2.4 Ghz Wireless Optical Computer Mouse with USB Nano Receiver, Black https://compareinsight.com/product/amazon-basics-2-4-ghz-wireless-optical-computer-mouse-with-usb-nano-receiver-black/ https://compareinsight.com/product/amazon-basics-2-4-ghz-wireless-optical-computer-mouse-with-usb-nano-receiver-black/#respond Thu, 17 Jul 2025 12:01:03 +0000 https://compareinsight.com/?post_type=product&p=6974

Basics 2.4 Ghz Wireless Optical Computer Mouse with USB Nano Receiver, Black

$21.20
in stock
Walmart.com
Easy installation - refer to user manual for instructions

US 2-4 Pack 2.4GHz Wireless Optical Mouse with USB Nano Receiver for Laptop PC

4.0
$10.09
in stock
Walmart.com
USA Seller, Ship Fast! High precision 800-1200-1600DPI resolution, fast speed, quick reaction 2.4GHz wireless transmission up to 10 meters operating distance. Optical technology for Nano receiver in the mouse button. With USB receiver hidden in the mouse button. Elegant and ergonomic design,...

Uiosmuph Wireless Mouse Rechargeable Computer USB C Mouse Silent 2.4GHz Optical with USB Nano Receiver and Type C Receiver for Laptop/Mac/PC - White

5.0
$11.99 $15.99
in stock
Walmart.com
Stable Connection and Power Efficient The 2.4 GHz wireless mouse provides a powerful, reliable connection, effective up to 10 meters of range. This mouse will auto sleep after 8 minutes of inactivity for power saving, it can be waken up by click any button. Silent and Durable Click Soundless...

User reviews

i loved this product it helped me so well in school and has a long batery life
good item. i loved how it feels and it works very great and fast.

Wireless Portable Mobile Mouse,2.4Ghz Wireless Optical Mouse Silent-Click Mice For Laptop, Computer, PC, Mac

4.0
$10.90
in stock
Walmart.com
Wireless Portable Mobile Mouse,2.4Ghz Wireless Optical Mouse Silent-Click Mice For Laptop, Computer, PC, Mac

User reviews

A very good mouse. it's really good great quality and it's bit like my other one i bought from shein you cant hear the clicking it's very soft and it has a nice curve my old one was flat this ones better and it doesn't have an annoying red light shining and it doesn't pick up dirt on the bottom very soft clicks and the scroll is very good and it comes with a battery
It looks great and feels great I loved it besides the fact the battery that came in the box didn't work but that was an easy enough fix overall great product.
Received. My daughter so happy to have one
I liked that it was user friendly.
Love it!! Quick to connect %26 long battery life.
Easy to use. I like the way the usb adapter is easily tucked in compartment near battery.
Love the color(pink).
Works Well And A Battery WAS Included! Last month, I bought this pink cordless mouse for my aunt's birthday, especially since she loves the color pink. To my surprise, she said that it came with a battery already in it! Not too bad.
confused. this item was returned. Actually there were 2 mouse's in the box and neither was what I was looking for.
i never got it. still. i just want a refund.

Wireless Mouse, 2.4G Slim Portable Computer Mouse with Nano Receiver Quiet Silent Optical Laptop Mouse for Notebook, PC, Laptop, Computer-Black and Gold

$18.25
out of stock
Walmart.com
From the brandWe manufacture and supply computer peripherals for companies around the world since the 2015. We can promise with great confident that the problem of muscle strain will be solved if you order these trackball mouse or split keyboard.We will also provide better pre-sales and...

2.4GHz Wireless Optical Mouse Mice & USB Receiver For PC Laptop Computer DPI USA

$6.89
in stock
Walmart.com
2.4GHz Wireless Optical Mouse Mice & USB Receiver For PC Laptop Computer DPI USA *Same Day Shipping If Order on or Before 3 PM ET Features : High precision 800-1200-1600DPI resolution, fast speed, quick reaction 2.4GHz wireless transmission up to 10 meters operating distance. Optical technology...

Onlychic Computer mouse, 2.4 Ghz Wireless Optical Computer Mouse with USB Nano Receiver

$25.99
in stock
Walmart.com
Smooth, precise and affordable wireless optical 3-button mouse with USB nano receiver for laptop, desktop and netbook PCs. 2.4 GHz wireless (not Bluetooth) provides a powerful, reliable connection. Nano-receiver stays in the PC USB port or stows conveniently inside the wireless mouse when not in...
  • Smooth, precise and affordable wireless optical 3-button mouse with USB nano receiver for laptop, desktop and netbook PCs
  • 2.4 GHz wireless (not Bluetooth) provides a powerful, reliable connection
  • Nano-receiver stays in the PC USB port or stows conveniently inside the wireless mouse when not in use (note: Receiver is stored within the mouse from production and needs to be removed upon setup)
  • Compatible with Windows 2000, XP, Vista, 7, 8, and 10
  • Easy installation – refer to user manual for instructions
]]>
https://compareinsight.com/product/amazon-basics-2-4-ghz-wireless-optical-computer-mouse-with-usb-nano-receiver-black/feed/ 0
Lenovo 100 Wireless Keyboard and Mouse Combo – Cordless Set with Spill Resistant Quiet Keys – 3-Zone Keyboard – Ambidextrous Mouse – Compact Design – Wireless USB -Black https://compareinsight.com/product/lenovo-100-wireless-keyboard-and-mouse-combo-cordless-set-with-spill-resistant-quiet-keys-3-zone-keyboard-ambidextrous-mouse-compact-design-wireless-usb-blac/ https://compareinsight.com/product/lenovo-100-wireless-keyboard-and-mouse-combo-cordless-set-with-spill-resistant-quiet-keys-3-zone-keyboard-ambidextrous-mouse-compact-design-wireless-usb-blac/#respond Thu, 17 Jul 2025 11:52:17 +0000 https://compareinsight.com/?post_type=product&p=6967

Lenovo Wireless Keyboard Mouse Combo

5.0
$44.93 $69.98
in stock
Walmart.com
The Lenovo 510 Wireless Combo Keyboard & Mouse compliments your desk with a simple yet elegant design. Easily connects wirelessly with PCs using a nano-USB receiver. The keyboard features a durable, water-resistant casing equipped to handle the occasional spill. The island keys are designed to...

User reviews

Never to old for a new laptop. [This review was collected as part of a promotion.] I replaced my Lenovo All-in-one computer with this Laptop and love it. It was easy to transfer the information using the Lenovo Migration Assistant. I also bought a wireless keyboard and mouse to use with it. I am 82 years old and the new one will be much easier for me to move around in case I need to in case of health reason.
Keyboard Heaven. [This review was collected as part of a promotion.] The Lenovo 510 wireless keyboard is not an ordinary keyboard. It is one of a kind, and every time I press a key, my work is just that much closer to perfection. Each key is smooth to press and its resistance is perfect. Not too much, not too little. The keyboard is fun ton use which makes the work more enjoyable. Each session at the desk with Lenovo 510 in front of me is closer to be a moment with a friend, rather than hard work. Therefore, anyone who is wondering what kind of keyboard they should purchase for their workstation, Lenovo 510 is the way to go.
Terrific keyboard/mouse combo. [This review was collected as part of a promotion.] Great combo for a small office space. The keyboard and mouse work from a single dongle, freeing up USB ports on my Ideacentre. The keyboard is full-range, including a keypad. The mouse is nicely responsive. Highly recommend.
Needed for a conference room. [This review was collected as part of a promotion.] easy to install and worked in a longer range than normal
Great deal. [This review was collected as part of a promotion.] Durable keyboard/mouse combination is an incredible value for the money
functional and affordability mixed in one. [This review was collected as part of a promotion.] what can I say about a keyboard mouse combo? For one, it works well is rugged for its price and is wireless
New Lenovo Keyboard and Mouse! [This review was collected as part of a promotion.] You couldn't ask for a better Wireless Keyboard and Mouse!
It's good for a membrane. [This review was collected as part of a promotion.] it works for a membrane keyboard. faced lag issues while on Bluetooth. mechanical keyboards are superior.
Ok Keyboard and mouse! [This review was collected as part of a promotion.] The keys seems to be stuck at times printing the same character multiple times even if I am not typing that.
Incredibly Average if Not Below Average Keyboard. [This review was collected as part of a promotion.] This is an incredibly average keyboard and mouse. It is not made of any sort of quality materials. This is a temporary keyboard until you can get something better or you can go get a logitech series keyboard. This keyboard has soft pressing keys which is nice, but it just doesn't get the right feel with the key spacing or response. The mouse feels hollow with it's flimsy plastic. Yet again, this is average, not quality. This is probably the only thing I've purchased that I was disappointed in.

Lenovo 100 USB-A Wireless Combo Keyboard and Mouse - USB Type A Wireless RF 2.40 GHz Keyboard - Black - USB Type A Wireless RF Mouse - Red Tracking - 1600...

5.0
$45.96
in stock
Walmart.com
Lenovo 100 USB-A Wireless Combo Keyboard and Mouse - USB Type A Wireless RF 2.40 GHz Keyboard - Black - USB Type A Wireless RF Mouse - Red Tracking - 1600 dpi - 3 Button - Scroll Wheel - QWERTY - Black - AA, AAA - Compatible with Computer for PC

User reviews

Solid Performer. [This review was collected as part of a promotion.] I was needing a new keyboard and this one looked like a nice, no-frills keyboard that would work well with my laptop when I'm sitting at my desk. It has a nice feel, good mouse movement and none of the extra buttons I only ever hit by accident on other keyboards.
Keyboard & Mouse. [This review was collected as part of a promotion.] Very practical keyboard & mouse, looks & works well, great design.
Revciew of the Lenovo 300 USB Combo KB&Mouse. [This review was collected as part of a promotion.] Work perfectly out of the box, exactly what I need for the Mini PCs to be used in my "Teach Seniors to NOT get scammed & how to get the most out of their PCs" class...
Good Value. [This review was collected as part of a promotion.] Appears to be well made and works fine. Good value for the price.
i like that you can set the laptop away from you and still have ths capabilities to utilize it while casting to the TV
5 Star Review. [This review was collected as part of a promotion.] Easy setup, great keyboard and mouse combo. I would highly recommend this Keyboard.
Works fine. Perfect for bringing with laptop
Good. It was easy to install and use. Good product and made sense to order.
Product Review - Acigan International. [This review was collected as part of a promotion.] 4-Stars The keyboard lacks a power switch. When the keyboard is placed into a bag for transport, the keys may be toggled as the bag is carried. This reduces the battery life with each keypress. To solve this, the battery must be removed before transit and reinserted when arrival at a destination as part of workstation setup, at a Client site for example. A simple on-off switch that cuts the power from the battery would solve this issue. It is interesting that the Mouse has an on-off switch, but the keyboard does not. The lack of power control on the keyboard reduced the Rate by 1, from 5 to 4.
Lenovo 100 USB-A Wireless Combo Keyboard and Mouse. For the Price (this was inexpensive) this keyboard/mouse combo is fine. Only thing I don't like is the size of the "F" (function) keys at the top of the keyboard, they are much smaller than a normal key. And one more feature would make it better... to have an option for a taller leg to make the tilt of the keyboard higher. But gets the job done.

Lenovo Professional Wireless Keyboard and Mouse Combo

5.0
$58.39 $59.99
out of stock
Walmart.com
The Lenovo Professional Wireless Keyboard and Mouse Combo is a full-size keyboard and mouse combination in a modern wireless solution. The slim 3-zone keyboard with number pad has responsive quiet keys and a premium typing experience. One touch dedicated media keys put the controls you use most...

User reviews

Another winning combo from Lenovo! [This review was collected as part of a promotion.] Smooth operation with instant setup was a pleasant surprise when I finally docked my new Lenovo and replaced my old wired keyboard and mouse on my dead Dell desktop. The pictograph instructions were perfectly fine, the batteries and slots for them were well-marked and the keyboard angle is great once the two flip-out feet are extended. The mouse is accurate, and the keyboard provides excellent feedback.
Outstanding Combo!!!! [This review was collected as part of a promotion.] The Lenovo Professional Wireless Keyboard and Mouse Combo is an outstanding choice for anyone seeking a reliable and durable set of peripherals. This combo offers excellent performance at a great price, making it a fantastic investment for both personal and professional use. One of top-notch choices for me is that it delivers on all fronts.
Professional keyboard and mouse. [This review was collected as part of a promotion.] Revised and excellent design virtually eliminates space between keys and keyboard which in previous versions were open t collecting every conceivable type of direct, liquids, crumbs staples etc. The NEW design has each key "punched directly through a ridged continuous surface. Clearances are extremely tight which just about rules out dust and debris entering the delicate area of the key switches. Also, new "touch" is excellent for an experienced typist. Inclusion of an "off/on? switch open mouse insure the battery lasts much longer.
Lenovo Professional Wireless Keyboard and Mouse. [This review was collected as part of a promotion.] The Lenovo wireless keyboard and Mouse combo is a straightforward, full size keyboard that gets the job done. It's compact, comfortable to type on, and includes a full number pad, which is great for work tasks. The keys feel responsive and solid, the only missing features are backlighting and customizable features. If you're looking for a simple, reliable keyboard that won't take up too much space, this is a good, affordable option. Perfect for everyday use without any fuss.
Lenovo Professional Wireless Combo Keyboard & Mous. [This review was collected as part of a promotion.] I'm an old guy, set in his ways and I was reluctant to 'cut the cord' of my old reliable keyboard and mouse. This product is a game changer and it keeps the cords off my desk. The keyboard is a huge upgrade from the 10 year old model it replaces....the keys work so much better. And the mouse is way more sensitive. Overall, this is a definite improvement over what it replaces...I just wish I had made the move to wireless years earlier. IMO, 5 stars to this item.
Nice keyboard and mouse. [This review was collected as part of a promotion.] Works as expected. Connected with adapter quickly.
Outstanding. [This review was collected as part of a promotion.] The keyboard os exceeding my expectations. Easy to set-up both keyboard and mouse
Solid dock companion. [This review was collected as part of a promotion.] I leave this combo pluged into the usb on my dock. The keyboard and mouse have a moderate response time for most work tasks. I still use a more sensitive mouse for freehand drawing or creative tasks. Good value. Keyboard keys feel more solid than the non-pro option. Takes a little more desk space also than the non-pro keyboard but doesn't unintentionally slide around.
It is a nice idea. [This review was collected as part of a promotion.] Very nice, but disappointing when connecting. It was sensitive to being shielded by metal
Thank you for sponsoring DUCATI. [This review was collected as part of a promotion.] Keys stick on sometimes while I am typing. CapsLock key is too easy to accidentally hit. Last Lenovo keyboard similar to this one died completely in two years.

Lenovo Essential Wireless Keyboard & Mouse Combo Gen 2, 2.4 GHz Wireless Nano USB, Full Size AmCombo Gen 2, 2.4 GHz Wireless Nano USB, Full Size Am

$45.49
in stock
Walmart.com
Designed for the modern professional, the Lenovo Essential Wireless Combo Keyboard & Mouse Gen 2 delivers functionality, comfort, and style. The slim 2.5-zone keyboard, with its responsive keys, promotes a premium typing experience, while the standard-size mouse perfectly complements its...

Lenovo Select Modern Combo - Keyboard and mouse set - wireless - 2.4 GHz - English - gray keyboard, storm gray case - brown box - CRU

4.0
$37.00 $59.99
out of stock
Walmart.com
Lenovo Select Modern Combo - keyboard and mouse set - English - gray Input Device

User reviews

Very Nice Keyboard and Mouse. [This review was collected as part of a promotion.] The keyboard has a very nice feel to it. The ability to charge it via usb cord is a very nice addition, no more dead batteries. Very solid feel to the keys and very stable, does not "wobble" when you are typing
Great Lenovo Quality. [This review was collected as part of a promotion.] After the mouse that came with my Lenovo All-in-one I needed a replacement. After looking on the Lenovo website I found this combo for a GREAT price. So I went ahead and replaced both, and they are amazing. The new form factor of the keyboard is so comfortable and the key switches work flawlessly. The mouse is comfortable and works perfectly. I would totally recommend to any Lenovo user.
Amazing value, great performance. [This review was collected as part of a promotion.] This product is amazing. The keys have enough travel to make them feel like they are a gaming keyboard without the loud clicking noise. Its responsive and ergonomically friendly. I high recommend this product. The only thing that I wish they would have added was a media control nob that does not require pressing the fn key. Othe than that, this item is amazing.
Type with ease. [This review was collected as part of a promotion.] Functional and easy to use. Doesn't take up too much space.
Keyboard/Mouse Accessories great value!!! [This review was collected as part of a promotion.] I bought the wireless keyboard and mouse as back up in case I need for work related tasks requiring multiple keyboards. So glad I purchased while on sale.
Good but I expected better for this pr. [This review was collected as part of a promotion.] Myszka niestety jest głośna i średnio można ją używać podczas spotkań. Spodziewałam się, że wydanie "modern" będzie eleganckie i przygotowane do spotkań biznesowych. Myszka nie ładuje się na kabel a myślałam, że tak jest, więc i tak będzie potrzeba baterii. Klawiatura OK, ale brakuje mi normalnego ustawienia strzałek i przycisków "insert", "end", itp.. dookoła
Looks and Feels Premium. [This review was collected as part of a promotion.] The anodized-metal look is great, making the it a good entry-level set of accessories. Goes well with my Lenovo laptop. Keyboard keys are a little smaller than my laptop's keyboard, but it's still comfortable to use.
Great set. [This review was collected as part of a promotion.] Nice wireless keyboard/mouse combo. The mouse is just a run of the mill product, lightweight gets the job done. I have big fingers so It's hard for me to type on the laptop keys. The wireless keyboard is awesome, big soft keys and at night when family is asleep, the keys are nice and quiet, key clicking like a normal keyboard.
Good. [This review was collected as part of a promotion.] I've been using this keyboard for a few weeks now, and overall, it's a great product. The keys are responsive and provide a satisfying tactile feel, making it perfect for both typing and gaming. The build quality feels solid, and the design is sleek, fitting nicely into my workspace
An "Okay" Option, but Not for Me. [This review was collected as part of a promotion.] I recently bought this keyboard because I was looking for something with slightly raised keys, hoping it would mimic the feel of a mechanical keyboard. The design seemed promising at first, as the keys were indeed raised a bit more than your typical membrane keyboards. However, after trying it out, I realized that the key feel wasn't quite what I was expecting. In fact, it turned out to be almost identical to the one I already had, which lacked the satisfying tactile feedback I was after. For someone who doesn't mind a softer, quieter typing experience, it might be a decent option. But if you're a fan of mechanical keyboards, like I am, this won't hit the mark. I ended up returning it and investing in an actual mechanical keyboard instead. Overall, it's an okay keyboard, just not the right fit for me.

Lenovo Professional Wireless Rechargeable Combo Keyboard and Mouse

5.0
$91.04 $99.99
out of stock
Walmart.com
Lenovo Professional Wireless Rechargeable Combo Keyboard and Mouse, RAM

User reviews

The perfect travel Keyboard/Mouse combo. [This review was collected as part of a promotion.] The size and weight is perfect for travelling, the one thing I have been searching for, is a hard carry case to make transporting it much better. I do have other EVA Carry cases for my other wireless devices. I do like that it is rechargeable and not having to make sure that I am carrying replacement batteries, just in case. I also do like that it can be connected by either Bluetooth or a dongle.
Good Keyboard and Mouse. [This review was collected as part of a promotion.] The keyboard has very smooth action and quiet key clicks. Mouse works good, and smooth. It is sensitive to the surface type of the mouse pad so buy a good one. They both have good battery life on a charge, and no more changing batteries. Like the pair and recommend.
Quality product. [This review was collected as part of a promotion.] Quick setup, smooth motion, and responsive keys! I love that I can use this with multiple laptops and do not need the dongle beyond initial setup. The rechargeable battery is a plus!
Solid daily driver for both mouse and keyboard. [This review was collected as part of a promotion.] Upgraded from the Microsoft Surface Pro keyboard purely for the sole fact of this keyboard and mice having built-in device switching buttons making this significantly easier to swap devices quickly. The feel of this keyboard is similar without the quite so much premium feel of the other. Added benefit of the included dongle is the ability to access BIOS settings without the needs of an addition keyboard. Overall well worth the value at ~$50
Sturdy Touch & Feel / Ready to go out of the box. [This review was collected as part of a promotion.] Wonderful texture and touch for both the keyboard and mouse. Worked seamlessly out of the box without any setup. Use primarily with my docked laptop and external monitor. Light weight mouse, but quick, firm response with minimal input/movement. Full keyboard that is both compact and sturdy. Very happy with purchase. Plan to use for many years.
Great everyday keyboard. [This review was collected as part of a promotion.] I go through keyboards very frequently because I use them for both work and personal. As a result, I've become very picky with my keyboards (and mouses too). This keyboard is truly amazing - very smooth and properly spaced out. The mouse is fine, not bad not great. Overall I love this product.
Programmable buttons! [This review was collected as part of a promotion.] Extra programmable buttons! Those are great. Didn't know I needed them till I had it. The mouse buttons aren't as quiet as I was hoping, but slightly quieter than a standard mouse. USB or Bluetooth is pretty sweet too. Had it a month and no regrets.
Nice combo kit for any computer (Windows or Mac). [This review was collected as part of a promotion.] These are very comfortable to use, I like being able to use Bluetooth rather than taking up a USB spot on the computer. I am able to take my mouse with me and use it on my home computer and office one. Great combo.
Mouse keyboard combo. [This review was collected as part of a promotion.] The keyboard is really nice. Not really a fan of the mouse though. It just doesn't fit my hand very well.
Great keyboard -- wish it was backlit; mouse OK. [This review was collected as part of a promotion.] Responsive keyboard with nearly silent keys. It quickly and seamlessly swaps between up to two bluetooth computers/devices just by pressing the respective buttons -- there's no lag like I've had on other keyboards. A third option connects using a USB dongle. There also is virtually no lag for it to reconnect when it has to wake up after not being used for awhile. There is an on/off switch hidden on the right side as well. It has a compact footprint, without being too tiny for large hands. It has the requisite F keys and full numeric keypad, plus four programmable buttons. The keyboard's finish is also in matte, which is great so there is no shiny plastic that shows unsightly fingerprints. The battery life appears to be pretty solid as well -- after a week of use, I still have not needed to recharge it (done with a USB C cord; one is included). My only complaint about the keyboard is it is not backlit. The accompanying mouse is not as impressive, however. It is no-frills and very lightweight, lacking in any ergonomic contouring (which I suppose is helpful for it being universally used in either the left or right hand). The plastic cover is very thin. You lift the entire cover off to access the USB dongle, and the cover is the entire top of the mouse. It seems like the cover will be prone to cracking over time. I prefer the setup from Logitech -- where the mouse has a compartment underneath it to store the USB dongle. The on/off button is underneath the mouse, along with the button to toggle between up to three device connections (2 bluetooth, 1 USB dongle). A tiny light appears to signal which of the 3 options the mouse is connected to, but the labeling is black on black. They should have made it white so it is easier to see. While the mouse is basic, it gets the job done.

Lenovo Professional Wireless Combo Keyboard & Mouse 2.4Ghz (4X30H56796)

$69.00 $104.69
out of stock
Walmart.com
Lenovo Professional Wireless Keyboard and Mouse Combo - US English - USB Wireless RF English (US) - USB Wireless RF Laser - 1600 dpi - 5 Button - Scroll Wheel - Symmetrical

Lenovo Idea 510 Wireless Keyboard Mouse Combo

4.0
$48.86 $62.35
in stock
Walmart.com
The Lenovo 510 Wireless Combo Keyboard & Mouse is a keyboard & mouse combo that compliments your desk with a simple yet elegant design. Easily connects wirelessly with PCs using one Nano USB receiver. The keyboard is spill-resistant with island keys for typing accuracy and comfort. The...
  • Effortless Wireless Connectivity: Introducing the Lenovo 100 USB-A Wireless Combo Keyboard & Mouse – the ultimate wireless solution that simply works. This combo is tailor-made for those who demand seamless connectivity without the fuss of cords. Experience unmatched convenience as you untether yourself from the traditional setup and dive into a world of wireless freedom.
  • Elegance Meets Functionality: Discover the beauty of simplicity with the Lenovo 100 Combo. The mouse’s clean and streamlined design fits perfectly in your hand, providing ergonomic comfort that enhances your navigation experience. Meanwhile, the keyboard showcases an island key design, transforming typing into a joyful, tactile journey. This combo seamlessly blends aesthetics and functionality for a superior user experience.
  • Rigorous Reliability Testing: When it comes to reliability, the Lenovo 100 USB-A Wireless Combo stands as a paragon of quality. Each component has undergone rigorous testing simulations, ensuring that you receive a combo that is not only stylish but also built to last. Rest assured that your investment in this combo translates to longevity and unwavering performance.
  • Precision and Control at Your Fingertips: The compact mouse included in the Lenovo 100 Combo boasts a remarkable 1000 DPI resolution. Experience precision like never before as you navigate through tasks, documents, and creative projects with exceptional accuracy. Whether you’re zooming through spreadsheets or crafting intricate designs, this mouse empowers you with control that is second to none
  • Sleek Design Meets Durability: The ultra-slim keyboard frame design is not only visually appealing but also designed for endurance. Its spill-resistant design, featuring a convenient drain hole, ensures that minor mishaps won’t disrupt your workflow. Stay productive and focused, even in fast-paced environments where accidents can happen.
]]>
https://compareinsight.com/product/lenovo-100-wireless-keyboard-and-mouse-combo-cordless-set-with-spill-resistant-quiet-keys-3-zone-keyboard-ambidextrous-mouse-compact-design-wireless-usb-blac/feed/ 0
Corsair K100 RGB Optical-Mechanical Wired Gaming Keyboard – OPX Switches – PBT Double-Shot Keycaps – Elgato Stream Deck and iCUE Compatible – QWERTY NA Layout – Black https://compareinsight.com/product/corsair-k100-rgb-optical-mechanical-wired-gaming-keyboard-opx-switches-pbt-double-shot-keycaps-elgato-stream-deck-and-icue-compatible-qwerty-na-layout-black/ https://compareinsight.com/product/corsair-k100-rgb-optical-mechanical-wired-gaming-keyboard-opx-switches-pbt-double-shot-keycaps-elgato-stream-deck-and-icue-compatible-qwerty-na-layout-black/#respond Thu, 17 Jul 2025 11:42:57 +0000 https://compareinsight.com/?post_type=product&p=6960

CORSAIR K100 RGB Mechanical Gaming Keyboard, Backlit RGB LED CHERRY MX SPEED, Double-Shot PBT Keycaps, with Magnetic Detachable Memory Foam Palm Rest - Black

4.0
$342.76 $491.17
in stock
Walmart.com
The incomparable CORSAIR K100 RGB Mechanical Gaming Keyboard combines stunning aluminum design with per-key RGB lighting and a 44-zone LightEdge. Powerful CORSAIR AXON Hyper-Processing Technology enables unparalleled capabilities such as 4,000Hz polling. CHERRY MX SPEED RGB Silver mechanical key...

User reviews

Pricing, quality of product, brand name
CORSAIR K100 Mechanical Gaming Keyboard. Great keyboard for serious gamers. Best price I have seen on this keyboard anywhere.
FedEx blunder. The package arrived right on time. The 2 main problems I had with the delivery was that with the package value being just over $200, the driver should have rung the bell when it was delivered. The second problem was that the driver set the box on the top step, RIGHT IN FRONT OF THE SCREEN DOOR ITSELF. I had to do some unusual maneuvering of the box in order to keep it from falling down the stairs so that I could pull it in my door.

CORSAIR K70 PRO RGB Optical-Mechanical Gaming Keyboard - White - OPX Linear Switches - PBT Double-Shot Keycaps – 8,000Hz Hyper-Polling - Magnetic Soft-Touch...

5.0
$249.99
out of stock
Walmart.com
The CORSAIR K70 PRO RGB Optical-Mechanical Gaming Keyboard delivers cutting-edge performance, equipped with hyper-fast CORSAIR OPX optical-mechanical keyswitches and CORSAIR AXON Hyper-Processing Technology. Win in style with an iconic aluminum frame and dynamic per-key RGB backlighting topped...

CORSAIR K70 PRO RGB Optical-Mechanical Gaming Keyboard

2.0
$356.58
out of stock
Walmart.com
The CORSAIR K70 PRO RGB Optical-Mechanical Gaming Keyboard delivers an iconic aluminum frame and even better performance, equipped with hyper-fast CORSAIR OPX optical-mechanical key-switches and CORSAIR AXON Hyper-Processing Technology. Win in style with dynamic per-key RGB backlighting, easy to...

User reviews

Good keyboard, OPX switches are bad though. Keyboard is amazing, really good design. However, the one I received had the Corsair OPX switches and they are just too sensitive for my liking.
Cosair customer service. Cosair customer support giving me all kinds of issues about my walmart order and refusing to accept Walmart orders and orginal invoice for proof of purchase. Box and package was missing the invoice paper for physical invoice. -Corsair continues to ignore

Corsair K55 RGB Pro Gaming Keyboard - Dynamic RGB Backlighting, Six Macro Keys with Elgato Stream Deck Software Integration

5.0
$47.49 $49.88
out of stock
Walmart.com
CORSAIR K55 RGB PRO gaming keyboard is your first step toward enchanced performance. Stay one step ahead with six dedicated on-the-fly programmable macro keys. Multi-key anti-ghosting ensures your simultaneous keypress combos are executed the way you want. The dedicated volume and media playback...

User reviews

No cons here. This is an amazing keyboard, from the customizable lighting to the programmable shortcuts/macros. Can't go wrong with this one. I will always recommend anything corsair, I've had very few issues with their products, and mist of the time it's with the icue software and not the hardware itself
This Keyboard Is Excelsior! This keyboard is fully functional querty keyboard with numpad and media control buttons, it is backlit and compatible with iCUE software suite by Corsair (the manufacturer of the keyboard) which allows the user to select from multiple lighting schemes such as slowly pulsing on and off, swiping slowly in a wave from one side of the keyboard to the other, or doing the same thing but in a rainbow across 5 distinct light-zones of the keyboard. It is high quality, the keys are very responsive, and being wired, there is no battery so that rating was a bit moot, but I rated it 5 stars anyways because obviously you do not need any batteries for this keyboard.
Great Feeling Keyboard. This keyboard is very comfortable to use and the keys feel very nice as you're typing. the lighting is also really cool!
Great! I bought this for my 12 year old and he loves it and he uses his computer for gaming quite a bit. No complaints. It looks nice and was very easy to get set up for him. While waiting for his new pc to arrive he was actually able to use it with his old iMac desktop which I was not expecting it to work on. He's used it on both apple and Microsoft desktops as well as his xBox One with 0 issues.
It's works well. Had my old razor for about 12 years. I'm over the loud mechanical click nowadays. This has a much nicer and almost stealth like keys. Plus there's RGB. Marco buttons works as intended, wish they were located on the top. I noticed I hit escape a lot and with this new keyboard, I always hit the macro button instead.
Corsair keyboard. Like the sound of the switches and like the way it looks.
Awesome. My son loves the RGB lighting and the customizable buttons
Great for gaming and work! Excellent gaming and work keyboard, like the colour divisions, corsair is a great brand. Did lots of research before choosing this one, so happy with it
Easy to See in Dark or Dim Light - Good Key Feel. I am not a gamer, but bought it for the lighting, key feel, media and audio control keys, and programmable macros. The keys are easy to see in the dark or dim light and have a nice "clicky" feel without being too noisy or hard to press. The backlight colors are programmable without any software and the settings are stored even when the computer is off. The instructions could be better, but there are videos on YouTube that demonstrate how to set it up/
Almost Perfect. The only thing I don't like about it is that the multimedia keys (volume controls) do not light up like the rest of the keyboard. Otherwise, it is almost perfect. I use the white color settings because it is easiest to see the key lettering when the room is dark.

Corsair K60 PRO TKL Wired Optical-Mechanical OPX Linear Switch Gaming Keyboard with 8000Hz Polling Rate - Black

$68.99
out of stock
Walmart.com
K60 PRO TKL | RGB TENKEYLESS OPTICAL-MECHANICAL GAMING KEYBOARD | BE THE KEY PLAYER | OPTICAL-MECHANICAL | LINEAR & HYPER-FAST Exclusive CORSAIR OPX optical-mechanical keyswitches offer hyper-fast input with just 1.0mm actuation distance and smooth linear travel for top-tier gaming performance....

Corsair K60 RGB Pro SE Mechanical Gaming Keyboard - Cherry Mechanical Keyswitches - Durable AluminumFrame - Customizable Per-Key RGB Backlighting - PBT...

5.0
$69.99 $156.98
out of stock
Walmart.com
Corsair K60 RGB Pro SE Mechanical Gaming Keyboard - Cherry Mechanical Keyswitches - Durable AluminumFrame - Customizable Per-Key RGB Backlighting - PBT Double-Shot Keycaps - Detachable Palm Rest
  • The CORSAIR K100 RGB is the pinnacle of CORSAIR keyboards, offering the cutting-edge performance, style, durability, and customization that gamers need to stand above the rest..Keyboard Cable Material: Braided
  • The centerpiece of your gaming setup, the CORSAIR K100 RGB boasts a refined design bolstered by a durable aluminum frame, dynamic per-key RGB backlighting, and a 44-zone three-sided LightEdge.
  • Powered by CORSAIR AXON Hyper-Processing Technology, enabling CORSAIR’s most advanced gaming keyboard experience by delivering up to 4x faster throughput with native 4,000Hz hyper-polling and 4,000Hz key scanning, while simultaneously driving up to 20-layer lighting effects.
  • A programmable iCUE control wheel gives you command over backlighting, media jogging, and more through CORSAIR iCUE software, customizable to perform actions in games and applications.
]]>
https://compareinsight.com/product/corsair-k100-rgb-optical-mechanical-wired-gaming-keyboard-opx-switches-pbt-double-shot-keycaps-elgato-stream-deck-and-icue-compatible-qwerty-na-layout-black/feed/ 0