Menu
Your Cart

A4Tech Bloody S520N Mechanical Gaming Keyboard

A4Tech Bloody S520N Mechanical Gaming Keyboard
A4Tech Bloody S520N Mechanical Gaming Keyboard
A4Tech Bloody S520N Mechanical Gaming Keyboard
A4Tech Bloody S520N Mechanical Gaming Keyboard
A4Tech Bloody S520N Mechanical Gaming Keyboard
A4Tech Bloody S520N Mechanical Gaming Keyboard
A4Tech Bloody S520N Mechanical Gaming Keyboard
  • Price: TK 4,320/-
  • Stock: In Stock
  • Model: Bloody S520N
TK 4,320/-
Ex Tax: TK 4,320/-

Key Features

    • Brand: A4Tech
    • Model: Bloody S520N
    • Keyboard Type: Mechanical Gaming Keyboard
    • Backlit: Yes, RGB Backlit
    • Connection Type: USB Wired
    • Warranty: 1 Year
Specification
General Feature
BrandA4Tech
ModelBloody S520N
TypeMechanical Gaming Keyboard
InterfaceUSB Wired
OthersKey Layout Features: Mix & Match customizable keycaps (includes 9 extra black keycaps)
Physical Attributes
Number Of Keys104
ColorFire Black
Dimensions446 x 132 x 37mm
Backlit OptionYes (10 Preset RGB Effects)
Warranty Information
Warranty1 Year
Description

A4Tech Bloody S520N Brown Switch RGB Mechanical Gaming Keyboard

The A4Tech Bloody S520N Fire Black BLMS Brown Switch RGB Mechanical Gaming Keyboard is designed for gamers and professionals who value speed, precision, and quiet performance. Featuring BLMS Brown mechanical switches, this keyboard delivers a smooth and tactile typing experience with minimal noise, making it perfect for both gaming sessions and office work.

With a 1000Hz report rate and 1ms key response time, every keystroke is registered instantly, ensuring fast and accurate in-game actions. It comes with 10 customizable RGB lighting effects that can be easily controlled using FN hotkeys, letting you create the perfect gaming atmosphere.

The double-shot injection keycaps guarantee long-lasting durability, preventing letters from fading even after years of use. The slanted keycap design also reduces accidental presses for improved accuracy, while 9 extra black keycaps allow for personal customization.


Maintenance Tips

  1. Keep the keyboard free from dust using a keyboard brush or compressed air.

  2. Avoid eating or drinking near the keyboard to prevent damage.

  3. Update firmware via official software for optimal performance.

  4. Use a wrist rest for long typing or gaming sessions to reduce fatigue.


Buying Information – Dear IT Solution

Get the A4Tech Bloody S520N Fire Black BLMS Brown Switch RGB Mechanical Gaming Keyboard at the best price in Bangladesh from Dear IT Solution. We provide best quality product insured in Bangladesh, fast delivery, and reliable customer service to meet all your gaming accessory needs.

Order today from Dear IT Solution and enhance your gaming and typing experience with top-notch performance.

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