Menu
Your Cart

A4Tech OP-330/OP-330S Wired Mouse Price in BD

A4Tech OP-330/OP-330S Wired Mouse Price in BD
A4Tech OP-330/OP-330S Wired Mouse Price in BD
A4Tech OP-330/OP-330S Wired Mouse Price in BD
A4Tech OP-330/OP-330S Wired Mouse Price in BD
A4Tech OP-330/OP-330S Wired Mouse Price in BD
-25 %
A4Tech OP-330/OP-330S Wired Mouse Price in BD
A4Tech OP-330/OP-330S Wired Mouse Price in BD
A4Tech OP-330/OP-330S Wired Mouse Price in BD
A4Tech OP-330/OP-330S Wired Mouse Price in BD
A4Tech OP-330/OP-330S Wired Mouse Price in BD
A4Tech OP-330/OP-330S Wired Mouse Price in BD
  • Price: TK 499/-
  • special price: TK 375/-
  • Stock: In Stock
  • Model: OP-330 / OP-330S
  • Dimensions: 120.00mm x 61.00mm x 37.00mm
TK 375/-
TK 499/-
Ex Tax: TK 375/-

Key Features

    • Brand: A4Tech
    • Model: OP-330 / OP-330S
    • Type: Wired
    • Sensor: Optical
    • Warranty: 1 Year
Specification
General Feature
BrandA4Tech
ModelOP-330 / OP-330S
DPI1200 DPI
Connectivity
WiredCable Length 150 cm
Power
SourceOptical
Physical Attributes
ColorBlack
Warranty Information
Warranty1 Year
Description

A4Tech OP-330 / OP-330S Wired Mouse – Durable & Precise

The A4Tech OP-330 / OP-330S Wired Mouse is known for its reliability and performance, making it ideal for both office and home use. With a durable button life and silent clicks, this mouse ensures long-lasting use with minimal noise, perfect for quiet environments. Whether you're working on complex tasks or navigating through long documents, the OP-330/OP-330S offers seamless and smooth control for enhanced productivity.

Special

    1200 DPI: Offers precise cursor control, allowing smooth navigation on virtually any surface.
    4-Way Wheel: Enables both vertical and horizontal scrolling for easy maneuvering through large documents or web pages.
    8-in-One: Customizable button functions to improve workflow and productivity.
    Wider Wheel: Provides more surface area for easy and quick scrolling, perfect for extended use.
    Silent Clicks: Designed to reduce noise, making it an excellent choice for quiet working environments.

Enhanced Productivity with Hyper-Fast Scrolling

The A4Tech OP-330 / OP-330S comes equipped with a hyper-fast scrolling feature, allowing you to fly through lengthy documents and web pages with a single flick. The contoured design gives you superior comfort, providing support and control during long hours of use. With its silent clicks and wider wheel, this mouse is perfect for users who value comfort, durability, and smooth performance.

Buy the A4Tech OP-330 / OP-330S at Dear IT Solution

Get the A4Tech OP-330 / OP-330S Wired Mouse at Dear IT Solution today. With its durable design and productivity-enhancing features, this mouse is the perfect addition to your workstation, available at the best price in BD.

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