Menu
Your Cart

HP 19V 6.75A BIG PORT 130W ADAPTER

HP 19V 6.75A BIG PORT 130W ADAPTER
-18 %
HP 19V 6.75A BIG PORT 130W ADAPTER
  • Price: TK 3,600/-
  • special price: TK 2,950/-
  • Stock: In Stock
  • Model: BIG PORT 130W
TK 2,950/-
TK 3,600/-
Ex Tax: TK 2,950/-

Key Features

    • Laptop adapter For Hp
    • Adapter Type: Big Port
    • Output Voltage: 19v
    • Watt: 130w
    • Warranty: 01 Year
    Specification
    General Feature
    For BrandHP
    ModelHP BIG PORT 130W
    Type BIG PORT
    Technical Info
    Wattage (W)130w
    Input Voltage220v
    Output Voltage19v
    Warranty Information
    Warranty01 Year
    Description

    HP 19V 6.75A BIG PORT 130W ADAPTER in bd 

    The HP 19V 6.75A Big Port 130W Adapter is a high-performance power supply designed to deliver consistent and reliable power to your HP laptop. This adapter ensures that your device charges quickly and efficiently, making it an essential accessory for users who need reliable power for everyday tasks, work, or gaming. The big port connector guarantees a secure connection, preventing any power disruptions while you're on the go.

    With a 130W output, this adapter is capable of powering larger laptops, providing the necessary wattage to handle demanding applications without any performance issues. The adapter is designed with advanced safety features, including over-voltage protection, over-current protection, and short-circuit prevention, ensuring that both your laptop and charger remain safe during use.

    The compact and lightweight design of this adapter makes it highly portable, perfect for those who frequently travel or need to carry extra charging equipment. Despite its small size, it is built to be durable and can withstand the rigors of daily use. This adapter is the ideal replacement for a faulty or lost charger or as a backup for your convenience.

    Compatible with a wide range of HP laptops, the HP 19V 6.75A Big Port 130W Adapter provides you with the reliable power you need to keep your device running smoothly for extended periods. Whether you're using it for business, entertainment, or personal projects, this adapter ensures optimal performance and maximum convenience.

    Buying Suggestion from Dear IT Solution

    Purchase the HP 19V 6.75A Big Port 130W Adapter from Dear IT Solution at the best price in Bangladesh. With our best quality products insured in Bangladesh, you can be confident in your purchase. Enjoy fast delivery, exceptional customer service, and the most reliable charger for your HP laptop. Order today and power your device 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};