Menu
Your Cart

Battery for Apple Macbook Pro 13" -A1322/A1278

Battery for Apple Macbook Pro 13" -A1322/A1278
Battery for Apple Macbook Pro 13" -A1322/A1278
  • Price: TK 3,100/-
  • Stock: In Stock
  • Model: A1322/A1278
TK 3,100/-
Ex Tax: TK 3,100/-

Key Features

    • Brand: For Apple
    • Model: Apple Macbook Pro 13" -A1322/A1278
    • Battery Type:Lithium-Ion
    • Voltage: 10.95V
    • Battery Capacity:6000mAh
    • warranty:6 Months
Specification
General Feature
BrandApple
ModelApple Macbook Pro 13" -A1322/A1278
Part NoApple A1322/A1278
Power
Battery TypeLithium-Ion
Battery Capacity6000mAh
Battery Cells6 Cells
Physical Attributes
ColorBlack
Compatible WithAPPLE A1322, A1278, MB990, MB990LL, MB991LL, MC374, MC375, MC72.
Warranty Information
Warranty6 Month
Description

Buy MacBook Pro A1322 6000mAh Battery | Affordable in Bangladesh

At Dear IT Solution, we provide the best quality product insured in Bangladesh for the Apple A1322/A1278 series batteries. This Li-ion battery is designed to offer reliable and extended power for your MacBook, ensuring optimal performance and longevity.

Features and Compatibility

    Compatibility: Designed for Apple MacBook models, including:
        MacBook Pro 13-inch A1322, A1278
        MB990, MB990LL, MB991LL
        MC374, MC375, MC72

    Battery Type: Lithium-Ion with 6 cells for efficient energy use and extended battery life.
    Capacity: 6000mAh, providing ample power for prolonged usage.
    Voltage: 10.95V for stable power delivery and consistent performance.
    Color: Black, perfectly matching the sleek design of your MacBook.
    Best Quality Product Insured in Bangladesh: Crafted with high-quality materials to meet stringent standards, ensuring long-lasting performance and reliability.

Maintenance Tips for Prolonged Battery Life

To get the best performance from your Apple A1322/A1278 battery, follow these maintenance tips:

    First Use: Fully charge the battery before using it for the first time to ensure it reaches its maximum potential.
    Regular Charging: Avoid letting the battery completely discharge and keep it regularly charged for the best results.
    Temperature Management: Store and use the battery in a cool, dry environment to prevent overheating and potential damage.
    Safe Handling: Be cautious when handling the battery to avoid physical damage, such as drops or impacts.
    Storage: If not using the battery for a long period, store it at around 50% charge in a cool location to maintain battery health.

By adhering to these tips, you can extend the lifespan and ensure the reliable performance of your Apple A1322/A1278 battery.

At Dear IT Solution, we offer this battery at the best price in Bangladesh, with a focus on delivering guaranteed quality.


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