Menu
Your Cart

LAPTOP BATTERY ORIGINAL HP ME03XL

LAPTOP BATTERY ORIGINAL HP ME03XL
-5 %
LAPTOP BATTERY ORIGINAL HP ME03XL
  • Price: TK 4,500/-
  • special price: TK 4,260/-
  • Stock: In Stock
  • Model: ME03XL
TK 4,260/-
TK 4,500/-
Ex Tax: TK 4,260/-

Key Features

    • Model: HP ME03XL / HSTNN‑UB6M / HSTNN‑LB6O / TPN‑Q154/Q155/Q156 / 787521‑005 / 787089‑541
    • Battery Type: Lithium-Ion (3‑Cell)
    • Voltage: 11.4 V
    • Capacity: 37 Wh (~3,080 mAh)
    • Color: Black
    • Warranty: 6 Months
Specification
General Feature
BrandHP
ModelME03XL / HSTNN‑UB6M / HSTNN‑LB6O / TPN‑Q154‑Q156 / 787521‑005 / 787089‑541
Power
Battery TypeLi‑Ion
Battery Capacity37 Wh (~3,080 mAh)
Battery Cells3‑Cell
Physical Attributes
ColorBlack
Compatible WithHP Stream 11 & Stream 13 series (eg. 11‑D011WM, 13‑C025TU, etc.)
Warranty Information
Warranty6 Months
Description

Original HP ME03XL Battery – Ideal Replacement for Stream 11/13 Series

The HP ME03XL (also labeled as HSTNN‑UB6M, HSTNN‑LB6O, TPN‑Q154/Q155/Q156, 787521‑005, 787089‑541) is a genuine OEM lithium-ion battery crafted for HP Stream 11 and 13 series, including models like 11‑D010NR, 13‑C010NR, and others. With a reliable 11.4 V rating and robust 37 Wh capacity (~3,080 mAh, 3‑cell), it delivers dependable performance—typically yielding around 4–6 hours of use, depending on the model.

Built using high-quality li‑ion/polymer cells, the ME03XL features advanced protection against overcharging, overheating, and short-circuiting, meeting strict OEM safety standards with CE, FCC, and RoHS certifications. This ensures compatibility and safe integration into your HP Stream laptop.




Buy from Dear IT Solution – Genuine Quality, Warranty & Local Support in Bangladesh

At Dear IT Solution, we offer authentic HP ME03XL batteries, fully tested and backed by our 6-month replacement warranty. Enjoy fast nationwide delivery, secure packaging, and expert after-sales service. As your trusted local supplier, we guarantee reliability and value—keeping your HP laptop powered reliably.

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