Menu
Your Cart

Kisonli A606 USB Multimedia Speaker

Kisonli A606 USB Multimedia Speaker
-8 %
Kisonli A606 USB Multimedia Speaker
  • Price: TK 600/-
  • special price: TK 550/-
  • Stock: In Stock
  • Model: A6056
TK 550/-
TK 600/-
Ex Tax: TK 550/-

Key Features

    • USB-powered with 3.5mm AUX audio input
    • Compact 2.0 channel stereo design
    • Built-in volume control knob
    • Clear sound with bass enhancement
    • Compatible with PCs, laptops, and mobile devices (via adapter)
Specification
General Feature
BrandKISONLI
ModelA-606
Frequency90Hz~20KHz
Physical Attributes
Dimensions7*7*10.4cm
USBUSB 2.0
WiredYes
Description

Compact Sound with Bass: Kisonli A606 USB Multimedia Speaker

The Kisonli A606 is a mini USB-powered multimedia speaker designed to deliver crisp audio and enhanced bass in a compact, stylish form. Ideal for desktops, laptops, and portable setups, the A606 offers stereo sound with dual-driver output that’s perfect for music, videos, and casual gaming.

With its plug-and-play USB + 3.5mm AUX connection, the Kisonli A606 is compatible with all modern PCs, laptops, and even some smartphones (via adapter). Its compact build makes it easy to carry and set up anywhere, while the front-facing volume control adds to its convenience.


Buy from Dear IT Solution – Budget-Friendly Audio, Trusted Delivery

Dear IT Solution offers the original Kisonli A606 USB Speaker, fully tested before dispatch and carefully packaged for safe delivery. We ensure authenticity, functionality, and fast delivery across Bangladesh. Choose us for reliable tech accessories at the best price.

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