Menu
Your Cart

Apple MacBook Retina A1705 A1534 A1527 High-Quality Battery

Apple MacBook Retina A1705 A1534 A1527 High-Quality Battery
Apple MacBook Retina A1705 A1534 A1527 High-Quality Battery
  • Price: TK 8,000/-
  • Stock: In Stock
  • Model: A1705, A1534 ,A1527
TK 8,000/-
Ex Tax: TK 8,000/-

Key Features

    • Model:A1705 A1534 A1527
    • Battery Type: Lithium-Polymer
    • Voltage: 7.55V
    • Capacity: 41.4Wh
    • Safety Standards: Protection against overcharge, over-discharge, overheating, and short-circuiting for reliable and safe use
    Specification
    General Feature
    BrandApple
    ModelA1705, A1534 ,A1527
    Power
    Battery TypeLithium-Polymer
    Battery Capacity 5263mAh
    Battery Cells 6 cells
    Physical Attributes
    ColorBlack
    Warranty Information
    Warranty06 Month Warranty
    Description

    Apple A1705 A1534 A1527 Laptop Battery

    The Apple A1705 Laptop Battery is a replacement battery specifically designed for select MacBook models, providing a reliable power source to restore and enhance your laptop’s performance. Ideal for users who need long-lasting battery life for uninterrupted productivity, this battery ensures optimal power delivery and longevity.

    Key Features
    Compatibility: Designed for MacBook models such as the MacBook Retina 12" A1534 (Early 2016, 2017) that require the A1705, A1534, or A1527 battery types
    Battery Type: Lithium-Polymer (Li-Poly) for high efficiency and reduced weight
    Voltage: 7.55V, ideal for efficient power use
    Capacity: 41.4Wh, providing extensive battery life for a range of applications
    Safety Standards: Protection against overcharge, over-discharge, overheating, and short-circuiting for reliable and safe use
    Product Benefits
    Extended Battery Life: This high-capacity replacement battery ensures longer-lasting power, perfect for daily tasks, work, and entertainment without frequent charging.
    High Quality and Durability: Manufactured with high-quality components to meet or exceed original battery specifications, ensuring performance and longevity.
    Slim and Lightweight: Designed to match the slim profile of the MacBook, this battery maintains the device's lightweight and portable design.
    Easy Installation: Engineered for a precise fit, allowing you to install it easily and get back to using your MacBook with minimal downtime.
    Why Choose the Apple A1705 Battery?
    If you’re experiencing a decline in battery life, the A1705 replacement battery provides a dependable solution to extend your MacBook's usability. With its quality build and robust performance, this battery offers peace of mind for on-the-go users or those working on intensive tasks.

    Buying Suggestion at Dear IT Solution
    Dear IT Solution offers the Apple A1705 Laptop Battery in Bangladesh, ensuring the best quality product at a competitive price. Backed by their customer support, this battery is an excellent choice for restoring your MacBook’s performance with confidence.



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