HW info

This simple extension reads HW (cpu, gpu, mem) info. Simple option to send info to your server.

HW infoคืออะไร?

HW info เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mioopioo และคุณลักษณะหลักของมันคือ "This simple extension reads HW (cpu, gpu, mem) info. Simple option to send info to your server."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HW info

ดาวน์โหลดไฟล์ส่วนขยาย HW info ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension is primary for developers of internet applications, but it is useful also for every user who wants to know, what hardware his computer has.

Hardware informations are very simple - CPU name, GPU name, MEMORY CAPACITY and MEMORY AVAILABLE.

How to use? There is two ways to use this extension.
1. SHOW ONLY HW INFO - for users
Install extension from chrome store and click on extension.

2. SEND HW INFO TO SERVER - for developers
2.1. Install extension from chrome store.
2.2. To your web page insert this iframe: 

2.3. On your server GET params is set:
https://your_domain/hwinfo/{extension-id}/ ?cpu=Intel(R)%20Core(TM)%20i5-8600K%20CPU%20%40%203.60GHz& cap=24&a ava=17& gpu=ANGLE%20(Radeon%20RX%20570%20Series)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ HW info HW info
ID mapimlkdaecmhlhapakmonjdlpiejbeh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hw-info/mapimlkdaecmhlhapakmonjdlpiejbeh
คำอธิบาย This simple extension reads HW (cpu, gpu, mem) info. Simple option to send info to your server.
ขนาดไฟล์ 25.98 KB
จำนวนการติดตั้ง 725
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-12-23
วันที่เผยแพร่ 2019-12-22
ผู้พัฒนา mioopioo
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mioopioo/hwinfo-chrome-extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HW info",
    "short_name": "Get CPU GPU MEM info",
    "version": "1.0",
    "description": "This simple extension reads HW (cpu, gpu, mem) info. Simple option to send info to your server.",
    "permissions": [
        "webNavigation",
        "system.cpu",
        "system.memory",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "img\/create-icon-16x16.png",
        "32": "img\/create-icon-32x32.png",
        "48": "img\/create-icon-48x48.png",
        "128": "img\/create-icon-128x128.png"
    },
    "browser_action": {
        "default_title": "HW info",
        "default_icon": "img\/create-icon-32x32.png",
        "default_popup": "\/html\/popup.html"
    }
}