Menu
Your Cart

A4TECH Bloody G430 Glare Gaming Headphone

A4TECH Bloody G430 Glare Gaming Headphone
A4TECH Bloody G430 Glare Gaming Headphone
  • Price: TK 2,550/-
  • Stock: In Stock
  • Model: Bloody G430
TK 2,550/-
Ex Tax: TK 2,550/-

Key Features

    • Model: Bloody G430
    • Laser Trimmed Speaker's Diaphragm
    • Auto-Adjusting Headband
    • Ultra Durable Anti-winding Wire
    • Noise-Canceling Mic
    Specification
    General Feature
    BrandA4tech
    ModelBloody G430
    Technical Info
    Frequency Range20-20000 Hz
    Sensitivity100 dB
    Driver DiameterDriver Unit: 40 mm Neodymium Magnet
    ConnectivityWire
    Physical Attributes
    ColorBlack
    Dimensions185 x 110 x 230mm
    Warranty Information
    Warranty01 Year
    Description

    A4TECH Bloody G430 Glare Gaming Headphone in bd 

    The A4TECH Bloody G430 Glare Gaming Headphone is designed to deliver an immersive and powerful audio experience for gamers who demand high performance and style. Featuring advanced 40mm neodymium drivers, this gaming headphone provides deep bass, clear mids, and sharp highs, ensuring that every in-game detail is heard with precision.

    The A4TECH Bloody G430 Glare Gaming Headphone boasts an eye-catching glare lighting effect that enhances your gaming setup, creating a visually dynamic atmosphere. Its durable and lightweight construction, combined with soft memory foam ear cushions, ensures long-lasting comfort during extended gaming sessions. The adjustable headband provides a secure fit for gamers of all ages.

    Equipped with a noise-canceling microphone, the A4TECH Bloody G430 allows for clear communication with teammates, eliminating background noise for a focused gaming experience. Its universal compatibility supports PCs, laptops, and other gaming devices, making it a versatile choice for every gamer.

    Buying Suggestions from Dear IT Solution

    For the A4TECH Bloody G430 Glare Gaming Headphone, look no further than Dear IT Solution, your trusted source for premium gaming accessories in Bangladesh.

    At Dear IT Solution, we offer the A4TECH Bloody G430 Glare Gaming Headphone at the best price in Bangladesh, ensuring excellent value and top-tier quality. Our dedication to providing genuine products and outstanding customer service makes us the go-to destination for all your gaming needs.

    Elevate your gaming audio and style with the A4TECH Bloody G430 Glare Gaming Headphone, available now at Dear IT Solution. Experience unmatched sound performance, comfort, and striking design in one exceptional package.

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