Menu
Your Cart

FANTECH MP‑356 Vigil Gaming Mousepad

FANTECH MP‑356 Vigil Gaming Mousepad
-20 %
FANTECH MP‑356 Vigil Gaming Mousepad
  • Price: TK 500/-
  • special price: TK 400/-
  • Stock: In Stock
  • Model: MP‑356
TK 400/-
TK 500/-
Ex Tax: TK 400/-

Key Features

    • Dimensions: 355 × 255 × 3 mm
    • Thickness: 3 mm density
    • Compatibility: Suitable for all mice—optical and laser
Specification
Mouse Pad
ColorBlack
Dimension355 × 255 × 3 mm (13.98 × 10.04 × 0.12 in)
General Feature
BrandFantech
ModelMP‑356 Vigil
Description

Ultimate Precision & Control: FANTECH MP‑356 “Vigil” Gaming Mousepad (355×255×3mm)

Take your gaming and work experience to the next level with the FANTECH MP‑356 “Vigil” Gaming Mousepad—designed for users who demand both precision and durability in a medium-sized form factor. Whether you're navigating fast-paced FPS titles or engaging in intricate digital artwork, the MP-356 delivers an optimal balance of control, speed, and comfort.

With dimensions of 355 × 255 × 3mm, this mousepad provides ample surface area for dynamic movement while maintaining a compact footprint suitable for most desktop setups. Its speed-surface cloth top is engineered for minimal friction, allowing for rapid and fluid mouse glides across the pad. Whether you’re aiming in-game or editing detailed visuals, the MP‑356 supports accurate cursor control without sacrificing agility.

The base of the mousepad is constructed from non-slip natural rubber, offering excellent grip on any surface. Even during intense gaming sessions, the MP-356 stays firmly in place, letting you focus on your performance without distraction. The pad’s structure is reinforced with stitched anti-fray edges, ensuring long-term durability even with heavy daily use.




Buy Original FANTECH MP‑356 at the Best Price in Bangladesh – Only from Dear IT Solution

At Dear IT Solution, we bring you the FANTECH MP‑356 Vigil Gaming Mousepad at a competitive price in BD, with full confidence in authenticity and performance. While this item does not include a warranty, our products are thoroughly checked, securely packaged, and dispatched quickly to ensure customer satisfaction.

Whether you're upgrading your gaming rig, productivity setup, or creative workstation, the MP‑356 is a reliable and high-quality choice. Its blend of performance, comfort, and clean aesthetics makes it suitable for all types of users—gamers, students, designers, and professionals alike.

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