Menu
Your Cart

Lenovo 330-15ISK Laptop Keyboard

Lenovo 330-15ISK Laptop Keyboard
-10 %
Lenovo 330-15ISK Laptop Keyboard
  • Price: TK 1,500/-
  • special price: TK 1,350/-
  • Stock: In Stock
  • Model: idea pad 330-15ISK
TK 1,350/-
TK 1,500/-
Ex Tax: TK 1,350/-

Key Features

    • Keyboard For: Lenovo Laptop
    • Model:330-15ISK
    • Condition: Brand New
    • Compatible For: IdeaPad 330-15, 330-15AST, 330-15IGM, 330-15IKB, 330-15ICH, 330-15ARR
    • Layout: US
    • Warranty 3 Month
Specification
General Feature
BrandLenovo
ModelIdeaPad 330-15, 330-15AST, 330-15IGM, 330-15IKB, 330-15ICH, 330-15ARR
Physical Attributes
ColorBlack
Backlit OptionOptional
LayoutUS
Warranty Information
Warranty3 Month
Description

Lenovo 330-15ISK Laptop Keyboard at Dear IT Solution

The Lenovo 330-15ISK is a dependable laptop known for its robust performance and user-friendly design. However, to maintain optimal functionality, it's crucial to have a high-quality keyboard. At Dear IT Solution, we offer top-quality replacement keyboards for the Lenovo 330-15ISK, designed to provide a seamless typing experience that matches the original factory specifications.

Product Features

Ideal Compatibility

Our replacement keyboard is specifically designed for the Lenovo 330-15ISK model, ensuring perfect compatibility. The keyboard features a US layout with English keys, making it an ideal replacement that integrates smoothly with your laptop.

Compatible Model:

    Lenovo 330-15ISK

This model-specific design ensures that the keyboard fits perfectly, providing the same level of comfort and functionality as the original.

High Durability and Performance

Constructed from durable materials, our Lenovo 330-15ISK replacement keyboard is built to withstand daily use. The keys offer a responsive feel, ensuring that your typing experience is smooth and comfortable, whether you're working, studying, or browsing. The sturdy construction guarantees long-lasting performance, even with extensive use.

Installation and Services

Expert Installation

Replacing a laptop keyboard can be a daunting task, but our skilled technicians at Dear IT Solution are here to help. We offer professional installation services to ensure that your new keyboard is installed correctly and functions flawlessly from the start. Our fitting service is quick and affordable, providing you with convenience and peace of mind.

Warranty and Support

To ensure your satisfaction, our Lenovo 330-15ISK replacement keyboard comes with a 3-month warranty covering any manufacturer defects. This warranty provides you with added security, knowing that any potential issues will be resolved promptly. Our customer support team is always available to assist with any questions or concerns you may have. Please note that physical damage is not covered under the warranty.

Conclusion

For Lenovo 330-15ISK users seeking a reliable keyboard replacement, Dear IT Solution offers the perfect solution. Our keyboards are crafted to meet the original specifications of your laptop, ensuring a perfect fit and excellent performance. With our professional installation services and a comprehensive warranty, you can trust Dear IT Solution to provide the best replacement keyboard for your Lenovo 330-15ISK. Visit us today to enhance your laptop's functionality with a high-quality keyboard replacement.


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