Menu
Your Cart

Laptop Keyboard for Dell Inspiron 15 3501

Laptop Keyboard for Dell Inspiron 15 3501
Laptop Keyboard for Dell Inspiron 15 3501
  • Price: TK 950/-
  • Stock: In Stock
  • Model: inspiron 15 3501
TK 950/-
Ex Tax: TK 950/-

Key Features

    • Keyboard For:Dell Laptop
    • Model: Dell Inspiron 15 3501
    • Condition: Brand New
    • Compatible For: Dell Inspiron 15 3501, 3502, 3505, 5593
    • Layout: US
    • Warranty: 3 Month
Specification
General Feature
BrandDell
ModelDell 15 3501, 3502, 3505,5593
Physical Attributes
ColorBlack
Backlit OptionNo
LayoutUS
Warranty Information
Warranty3 Month
Description

Dell Inspiron 15 3501, 3502, 3505 Backlit Black Keyboard, US Layout at Dear IT Solution


Enhance your Dell Inspiron 15 3501, 3502, or 3505 laptop with a high-quality backlit black keyboard, available exclusively at Dear IT Solution. Designed to offer a comfortable typing experience with added visibility in low-light conditions, this keyboard is perfect for professionals, students, and casual users alike.

Product Features

Perfect Compatibility

This replacement keyboard is specifically designed to fit the following Dell Inspiron models:

    Dell Inspiron 15 3501
    Dell Inspiron 15 3502
    Dell Inspiron 15 3505

    Dell Inspiron 15 5593



The keyboard ensures a perfect fit and seamless functionality, maintaining the original performance and look of your laptop.

US English Layout

Featuring a US English layout, this keyboard provides an intuitive and familiar typing experience. The key arrangement is designed to maximize comfort and efficiency, making it ideal for both work and leisure.

Backlit Functionality

With its built-in backlit feature, this keyboard enhances visibility, allowing you to type comfortably in low-light environments. The soft, adjustable lighting reduces eye strain and improves accuracy, making it easier to work, study, or enjoy entertainment at any time of day.

Durable and Sleek Design

Constructed from high-quality materials, this black keyboard is both durable and stylish. Its sleek design complements the aesthetics of your Dell Inspiron laptop, adding a touch of modern elegance while ensuring long-lasting performance.

Warranty and Support

In Stock and Ready to Ship

Dear IT Solution ensures that this keyboard is readily available and ships quickly, so you can minimize downtime and get back to your tasks without delay.

3-Month Warranty

We offer a 3-month warranty on this Dell Inspiron keyboard, covering any manufacturer defects. This warranty guarantees that you receive a reliable product and peace of mind with your purchase.

Conclusion

Upgrade your Dell Inspiron 15 3501, 3502, or 3505 with a high-quality backlit black keyboard from Dear IT Solution. Combining perfect compatibility, a sleek design, and enhanced functionality, this keyboard is the ideal choice for those looking to improve their laptop's performance. Visit Dear IT Solution today to enhance your 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};