Menu
Your Cart

ASUS C21N1613/C302CA ORIGINAL LAPTOP BATTERY

ASUS C21N1613/C302CA ORIGINAL LAPTOP BATTERY
ASUS C21N1613/C302CA ORIGINAL LAPTOP BATTERY
  • Price: TK 4,200/-
  • Stock: In Stock
  • Model: C21N1613
TK 4,200/-
Ex Tax: TK 4,200/-

Key Features

    • Model: C21N1613 / C21PQC5 / 0B200-02280000
    • Battery Type: Li-Polymer
    • Voltage: 7.7 V
    • Capacity: 39 Wh
    • Designed for ASUS Chromebook Flip C302CA/C302C series
    • OEM-level fit and performance
Specification
General Feature
BrandAsus
ModelC302CA
Power
Battery TypeLi-Polymer
Battery Capacity39 Wh
Physical Attributes
ColorBlack
Compatible WithASUS Chromebook Flip C302CA/C302C series
Warranty Information
Warranty6 Month
Description

Reliable Power Upgrade: ASUS C21N1613 Battery for Chromebook Flip C302CA (Original Spec)

The ASUS C21N1613 Laptop Battery (also known as C21PQC5, 0B200-02280000) is a premium OEM-grade internal battery designed specifically for the Asus Chromebook Flip C302CA and related C302C-series models. Made with high-quality lithium-polymer cells, it delivers stable power and long-lasting endurance to keep your Chromebook running smoothly during work, study, or entertainment sessions. With a voltage rating of 7.7 V and typical capacity of 39 Wh (≈ 5085 mAh), this battery matches or exceeds ASUS original specifications us.amazon.com+15batterymall.com+15amazon.com+15.

Built for easy installation, it fits precisely into compatible devices and includes safety protections against overheating, overcharging, and short circuits. Featuring strong compatibility with common ASUS part numbers, this battery helps restore your Chromebook's performance without compromising reliability.




Why Shop at Dear IT Solution – Trustworthy, Fast, Value-Driven

Get authentic, high-quality components at Dear IT Solution, your trusted supplier in Bangladesh. The ASUS C21N1613 Battery offered comes with full compatibility assurance, quality testing, and warranty support—ensuring you receive a genuine and dependable product at the best price in BD. Shop online for quick delivery or visit our store for expert guidance. We stand by fast shipping, secure packaging, and excellent after-sales service.

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