Menu
Your Cart

Fantech Crypto WGC3 Wireless Gaming Mouse

Fantech Crypto WGC3 Wireless Gaming Mouse
Fantech Crypto WGC3 Wireless Gaming Mouse
Fantech Crypto WGC3 Wireless Gaming Mouse
Fantech Crypto WGC3 Wireless Gaming Mouse
Fantech Crypto WGC3 Wireless Gaming Mouse
Fantech Crypto WGC3 Wireless Gaming Mouse
Fantech Crypto WGC3 Wireless Gaming Mouse
Fantech Crypto WGC3 Wireless Gaming Mouse
Fantech Crypto WGC3 Wireless Gaming Mouse
  • Price: TK 2,560/-
  • Stock: In Stock
  • Model: Crypto WGC3
TK 2,560/-
Ex Tax: TK 2,560/-

Key Features

    • Model: Crypto WGC3
    • Connectivity: Type-C Wired / StrikeSpeed Wireless
    • Programmable Buttons: 6
    • Switch Lifecycle: 20 Million Clicks
    • Battery: Rechargeable 14500 Lithium Battery
    Specification
    General Feature
    BrandFantech
    ModelCrypto WGC3
    Connection TypeWired / StrikeSpeed Wireless
    OthersSensor: Pixart 3325 DPI: 400 - 10000
    Gaming Features
    ButtonProgrammable Buttons: 6
    Switch Lifecycle20 Million Clicks
    Acceleration100IPS / 20G
    Mouse Feature
    Polling Rate1000Hz
    Physical Attributes
    ColorBlack White
    Weight96g
    Warranty Information
    Warranty01 Year
    Description

    Fantech Crypto WGC3 Wireless Gaming Mouse

    The Fantech Crypto WGC3 Wireless Gaming Mouse is designed for gamers who demand precision, speed, and versatility. Featuring StrikeSpeed Wireless technology, this mouse ensures lag-free connectivity, allowing for smooth and uninterrupted gaming. Additionally, it supports Type-C wired mode, giving you the flexibility to switch between wireless and wired gameplay effortlessly.

    With six programmable buttons, the Crypto WGC3 allows gamers to customize their controls, enhancing efficiency and gameplay experience. The high-quality switches are built to last, with an impressive 20 million click lifecycle, ensuring long-term durability and reliability.

    Powered by a rechargeable 14500 lithium battery, this gaming mouse delivers extended playtime, reducing the need for frequent charging. Whether you're engaging in fast-paced FPS battles or strategic gameplay, the Crypto WGC3 provides responsive performance and seamless control.

    Buying Suggestion from Dear IT Solution

    Get the Fantech Crypto WGC3 Wireless Gaming Mouse at the best price in Bangladesh from Dear IT Solution. We ensure the best quality product insured in Bangladesh, offering premium gaming accessories for serious gamers.

    Order now from Dear IT Solution for fast delivery, reliable customer support, and high-performance gaming gear. Elevate your gaming experience with the Crypto WGC3 today

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