Menu
Your Cart

Lenovo T430 US Laptop Keyboard

Lenovo T430 US Laptop Keyboard
Lenovo T430 US Laptop Keyboard
  • Price: TK 2,043/-
  • Stock: In Stock
  • Model: T430
TK 2,043/-
Ex Tax: TK 2,043/-

Key Features

    • Condition: Brand New
    • Layout: US
    • Size: Medium
    • Warranty: 3 Month
Specification
General Feature
OthersCondition: Brand New
Layout: US
Size: Medium
Compatible With: Lenovo Thinkpad T430, X230, T430S, T430I, X230I
Physical Attributes
ColorBlack
Warranty Information
Warranty3 months
Description

Lenovo T430 US Laptop Keyboard

The Lenovo T430 US Laptop Keyboard is a premium replacement keyboard designed to restore your Lenovo ThinkPad laptop's typing experience to its original quality. This brand-new keyboard is built for compatibility with the Lenovo ThinkPad T430 series, as well as other models like the X230, T430S, T430I, and X230I, offering a seamless fit and straightforward installation. With its standard US layout, this keyboard provides a familiar and comfortable typing experience. The keys are arranged in a way that allows for efficient and precise typing, whether you're working on spreadsheets, writing emails, or coding. The medium-sized keyboard is designed to fit perfectly into your Lenovo ThinkPad, ensuring a secure and stable connection once installed. Crafted in a sleek black color, the Lenovo T430 US Laptop Keyboard maintains the classic and professional aesthetic associated with the ThinkPad brand. The key caps are clearly labeled with high-contrast characters, ensuring excellent visibility in various lighting conditions. The keyboard's minimalist design ensures it blends seamlessly with your laptop's overall look. The build quality of this keyboard is top-notch, designed to withstand the rigors of daily use. The keys are responsive and durable, providing a consistent typing experience over time. This durability makes it an excellent choice for professionals, students, and anyone who uses their laptop regularly for work or leisure. The Lenovo T430 US Laptop Keyboard is easy to install, allowing you to quickly replace your old or damaged keyboard without extensive technical knowledge. Its compatibility with multiple Lenovo ThinkPad models provides flexibility for users who have different laptops within the same series. In summary, the Lenovo T430 US Laptop Keyboard is a reliable and durable replacement keyboard designed to bring back the original performance of your Lenovo ThinkPad laptop. With its comfortable US layout, sleek black design, and precise fit, this keyboard is an ideal solution for those seeking a high-quality replacement that meets the standards of the original equipment. Whether for work, study, or casual use, this keyboard ensures a smooth and enjoyable typing experience.

Review

Write a review

Note: HTML is not translated!
Bad Good
Critial Path: Hello world!
Hello world!
/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};