معلومات الجهاز

عرض معلومات المتصفح والجهاز

كيفية استخدام معلومات الجهاز

  1. 1افتح الصفحة لعرض معلومات جهازك
  2. 2راجع بيانات المتصفح والنظام
  3. 3تحقق من الميزات المدعومة

حول معلومات الجهاز

معلومات الجهاز هي أداة تعرض معلومات شاملة عن متصفحك وجهازك ونظام التشغيل. تُظهر دقة الشاشة وقدرات المتصفح والمكوّنات المدعومة دون الحاجة إلى تثبيت أي برنامج.

المميزات الرئيسية لـ معلومات الجهاز

  • اكتشاف تلقائي بدون إدخال
  • معلومات المتصفح والإصدار
  • بيانات الشاشة والدقة
  • اكتشاف نظام التشغيل
  • فحص دعم الميزات
  • Online/offline status and connection type (if available)
  • Hardware concurrency (number of logical CPU cores)
  • Works entirely in-browser — nothing is transmitted to any server

أمثلة

معلومات نموذجية

مثال على المعلومات المعروضة

المدخلات

(لا يتطلب إدخالاً)

النتيجة

المتصفح: Chrome 124
نظام التشغيل: macOS 14
دقة الشاشة: 2560×1600

Verify responsive breakpoint during cross-device testing

Check the actual viewport width and device pixel ratio while testing a responsive design.

المدخلات

Open in a mobile browser or browser DevTools device emulation

النتيجة

Viewport: 375×667 | Device pixel ratio: 3 | Touch: Yes

حالات الاستخدام الشائعة

  • تصحيح مشاكل التوافق
  • الإبلاغ عن أخطاء المتصفح
  • فحص دعم الميزات
  • توثيق بيئة الاختبار
  • دعم فني عن بُعد
  • Teaching browser API capabilities by showing the data available to web applications

استكشاف الأخطاء

معلومات غير دقيقة

الحل

بعض المتصفحات تُخفي أو تُزيّف معلومات المستخدم — النتائج تعتمد على ما يُفصح عنه المتصفح

ميزات غير مكتشفة

الحل

بعض الميزات تتطلب مسحًا نشطًا — تأكد من السماح بالأذونات المطلوبة

Hardware concurrency shows 1 even on a multi-core machine

الحل

Some browsers cap navigator.hardwareConcurrency for privacy reasons. Firefox and Brave may report a reduced or fixed value to prevent fingerprinting.

الأسئلة الشائعة

هل يتم حفظ أي بيانات؟

لا، جميع المعلومات تُعرض محليًا فقط ولا تُرسَل إلى أي خادم.

لماذا تختلف النتائج بين المتصفحات؟

كل متصفح يُفصح عن معلومات مختلفة — بعضها يخفي بيانات بعمد لحماية الخصوصية.

What is device pixel ratio?

Device pixel ratio (DPR) is the ratio of physical screen pixels to CSS pixels. A DPR of 2 means 4 physical pixels per CSS pixel — common on Retina displays. Higher DPR values produce sharper rendering but affect how images need to be sized.

What is hardware concurrency?

Hardware concurrency (navigator.hardwareConcurrency) reports the number of logical CPU cores available. Web applications can use this to decide how many parallel Web Workers to spawn for CPU-intensive tasks.

Can I use this to test if a user is on mobile?

Yes, Device Info shows the user agent string and touch support. For reliable mobile detection in production code, check for touch events and viewport width rather than relying solely on user agent parsing.

Does it show GPU information?

Basic GPU information may be available via the WebGL renderer string (RENDERER). This tool focuses on the most practically useful device properties — GPU details are included where the browser exposes them.

Why does the viewport size differ from the screen size?

Viewport is the visible area of the browser window (inside the browser chrome). Screen size is the total physical display resolution. These differ because the browser toolbar, taskbar, and other chrome take up space.

Can this be used for browser fingerprinting?

The properties shown here are the same ones used in browser fingerprinting. This tool simply surfaces them for legitimate debugging purposes. Privacy-focused browsers intentionally reduce the uniqueness of these values.