Menu
Your Cart

Lenovo T410 US Laptop Keyboard

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

Key Features

    • Color: Black
    • Size: medium
    • Screw: 2
    • Warranty: 3 Months
Specification
General Feature
OthersCondition: Brand New
Layout: US
Size: Medium
Compatible With Lenovo Thinkpad T410 X220 T420 T410I T420S T400S X220I
Track Pointer: No
Power Switch: No
RGB: No
Screw: 2
Physical Attributes
ColorBlack
Warranty Information
Warranty3 months
Description

Lenovo T410 US Laptop Keyboard​​​​​​​

The Lenovo T410 US Laptop Keyboard is a high-quality, brand-new replacement keyboard designed specifically for Lenovo ThinkPad T410 laptops and compatible models, including the T410I, T420, T420S, T400S, X220, and X220I. This replacement keyboard is crafted with durability and reliability in mind, providing you with a seamless experience that matches the original equipment. Featuring a standard US layout, this keyboard offers a familiar and intuitive arrangement of keys, making it easy to type efficiently and comfortably. The keys are well-spaced and responsive, providing just the right amount of feedback for a smooth typing experience. The black color of the keyboard complements the classic design of the ThinkPad series, ensuring that your laptop maintains its professional appearance. The Lenovo T410 US Laptop Keyboard is designed to fit precisely into the compatible laptops, with a medium size that aligns perfectly with the original layout. Its installation is straightforward, thanks to the inclusion of two screws that help secure the keyboard in place. This ensures a stable and secure connection, reducing the risk of wobbling or misalignment during use. While this keyboard does not include a track pointer, power switch, or RGB lighting, it is designed with simplicity and reliability in mind. The absence of these features helps maintain a sleek and minimalist design, ideal for users who value functionality and ease of use. The keys are printed with clear, high-contrast characters, making it easy to type in various lighting conditions. This replacement keyboard is compatible with a range of Lenovo ThinkPad models, providing versatility for those who need a reliable solution for multiple laptops. Whether you're a business professional, student, or casual user, the Lenovo T410 US Laptop Keyboard offers the quality and durability you need to keep your laptop running smoothly. In summary, the Lenovo T410 US Laptop Keyboard is a reliable, brand-new replacement keyboard designed to fit seamlessly into your compatible Lenovo ThinkPad laptop. With its durable construction, precise fit, and easy installation, this keyboard is an excellent choice for users seeking a straightforward and high-quality replacement option.

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};