Menu
Your Cart

A4TECH OP-730D Wired Mouse with 2X Click Feature

A4TECH OP-730D Wired Mouse with 2X Click Feature
A4TECH OP-730D Wired Mouse with 2X Click Feature
A4TECH OP-730D Wired Mouse with 2X Click Feature
A4TECH OP-730D Wired Mouse with 2X Click Feature
A4TECH OP-730D Wired Mouse with 2X Click Feature
-24 %
A4TECH OP-730D Wired Mouse with 2X Click Feature
A4TECH OP-730D Wired Mouse with 2X Click Feature
A4TECH OP-730D Wired Mouse with 2X Click Feature
A4TECH OP-730D Wired Mouse with 2X Click Feature
A4TECH OP-730D Wired Mouse with 2X Click Feature
A4TECH OP-730D Wired Mouse with 2X Click Feature
  • Price: TK 595/-
  • special price: TK 450/-
  • Stock: In Stock
  • Model: OP-730D
  • Dimensions: 119.00mm x 63.00mm x 36.00mm
TK 450/-
TK 595/-
Ex Tax: TK 450/-

Key Features

    • Brand: A4Tech
    • Model: OP-730D
    • Type: 2X Optical Mouse
    • Buttons No.: 4
    • Warranty: 1 Year
Specification
General Feature
BrandA4tech
ModelOP-730D
DPI1000 DPI
Others2X Optical Mouse
Connectivity
WiredCable Length 150 cm
Power
SourceOptical USB
Physical Attributes
ColorBlack
Dimensions119mm x 63mm x 36mm
WeightNet Weight:91 g (w/ cable)
Warranty Information
Warranty1 Year
Description

A4Tech OP-730D Wired Mouse: Enhance Productivity with Precision

The A4Tech OP-730D wired mouse is designed to boost productivity with its high-performance features. Equipped with a 1000 DPI optical sensor and a nearly frictionless scroll wheel, this mouse ensures smooth and accurate navigation. Whether you're scrolling through long documents or browsing web pages, the OP-730D delivers optimal control and comfort. Available at Dear IT Solution, you can get the best price in Bangladesh when you purchase this highly durable mouse.

 Features of A4Tech OP-730D Wired Mouse

2X-Button: This innovative feature allows for a quick double-click with a single press, simplifying everyday tasks and improving efficiency.

4-Way Wheel: The 4-way scrolling feature lets you navigate both horizontally and vertically, making it easier to browse complex documents and wide web pages.

1000 DPI Precision: With its 1000 DPI optical sensor, the mouse offers smooth cursor control on virtually any surface, ensuring precise movement for all types of tasks.

Durable Button Life: Designed for long-term use, the buttons have a durable lifespan, perfect for everyday heavy use.

Dust-Resistant Wheel: The dust-resistant wheel prevents dirt build-up, keeping the mouse functional for a longer period.

Plug and Play: No setup required—just plug in the mouse and start using it immediately, thanks to its simple plug-and-play functionality.

Screen Capture: The screen capture feature allows you to quickly take screenshots, making it ideal for presentations and documentation.

5 Million Clicks Button Lifetime: Built with extreme durability, the mouse guarantees over 5 million clicks, offering long-lasting performance.

Why Buy A4Tech OP-730D from Dear IT Solution

When looking for a reliable wired mouse, A4Tech OP-730D offers extreme quality and durability. Available at Dear IT Solution, you are guaranteed to get the best quality product insured in Bangladesh. Whether you shop in-store or place an online order, we ensure the best price, fast delivery, and excellent service.


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