Menu
Your Cart

ASUS X555 Series Keyboard

ASUS X555 Series Keyboard
-33 %
ASUS X555 Series Keyboard
  • Price: TK 1,500/-
  • special price: TK 1,000/-
  • Stock: In Stock
  • Model: ASUS X555 Series
TK 1,000/-
TK 1,500/-
Ex Tax: TK 1,000/-

Key Features

    • Keyboard For: Asus Laptop
    • Model: ASUS X555 Series
    • Condition: Brand New
    • Compatible For: Laptop KEYBOARD For ASUS X555,X555LF,X555LI,X555LJ,X555U,X555UA X555UB
    • Layout: US
    • Warranty: 3 Month
Specification
General Feature
BrandAsus
Model ASUS X555,X555LF,X555LI,X555LJ,X555U,X555UA X555UB
Physical Attributes
ColorBlack
Backlit OptionNo
LayoutUS
Warranty Information
Warranty3 Month
Description

ASUS X555 Series Keyboard at Dear IT Solution


Upgrade your ASUS X555 series laptop with a high-quality replacement keyboard from Dear IT Solution. Whether you're replacing a faulty keyboard or simply enhancing your device, this keyboard is designed to provide reliable performance and a comfortable typing experience.

Key Features

Compatibility

This keyboard is compatible with a wide range of ASUS X555 series models, including:

    ASUS X555
    ASUS X555LF
    ASUS X555LI
    ASUS X555LJ
    ASUS X555U
    ASUS X555UA
    ASUS X555UB

Its precise design ensures a perfect fit for these models, maintaining the seamless integration and original aesthetic of your laptop.

Durable Construction

Built to withstand daily use, this keyboard offers a durable and responsive typing experience. The keys are designed for long-term reliability, ensuring that your laptop remains in optimal working condition.

Sleek Design

The keyboard features a sleek, black finish that matches the professional appearance of your ASUS X555 series laptop. This design not only enhances the look of your device but also provides a comfortable and stylish typing environment.

Easy Installation

Designed for straightforward installation, this keyboard allows you to quickly and easily replace your old keyboard, restoring your laptop’s functionality without hassle.

Warranty and Support

Dear IT Solution offers a comprehensive warranty on this ASUS X555 series keyboard, covering any manufacturer defects. Our commitment to quality ensures that you receive a reliable product backed by excellent customer service.

Conclusion

Enhance your ASUS X555 series laptop with a top-quality replacement keyboard from Dear IT Solution. With compatibility across multiple models, durable construction, and a sleek design, this keyboard is the perfect choice for improving your device's performance. Visit us today to secure your upgrade and enjoy a superior 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};